对于问题,百度最常见的答案是直接链接到https://github.com/googlecreativelab/quickdraw-dataset这个GitHub仓库,这个确实很重要,一定要认真阅读,因为quickdraw数据集有多种格式,每种格式内的信息也是不一样的,比如是否包含时序信息。

  真正的下载地址可以通过这个仓库中的链接跳转过去,这里我给出一个最上层路径的地址https://console.cloud.google.com/storage/browser/quickdraw_dataset/,通过这个地址就可以知道想访问这个网页必须出的去才行,如有需要自行出去。

  网页打开后的样子如下图:图中1,2标号的位置都可以下载,但是下载的文件名和地址是不一致的,可以看后续两幅图的例子。


  该数据集一共345个类别,如果想全部下载,不可能一个个的点击,那么懂爬虫的可以自己爬,但是爬虫爬取该网页的时候要先进行谷歌账户的登录,如下图

  这里我介绍个最简便的方法,直接在该页面右键另存为,把网页保存到本地,然后将本地HTML文件再做网页解析也好,直接当字符串处理也好,只要能把超链接的内容提取到就可以,这里提供一个简陋的工具代码,有需要的自己参考,涉及到正则表达式的匹配,自行百度(本地HTML文件不提供,自行下载)

from bs4 import BeautifulSoup
import resoup=BeautifulSoup(open('htmlfile.html',encoding='utf-8'),features='html.parser')  #features值可为lxmlclass_list=re.findall('href="https://storage.googleapis.com/quickdraw_dataset/full/binary/(.*?).bin',str(soup))
print("class_num=",len(class_list))
for num, i in enumerate(class_list):print("https://storage.googleapis.com/quickdraw_dataset/full/binary/"+ i +".bin")if(num+1) % 15==0:print()print()

  最后我把我提取到的binary格式的链接附上,有需要的可以直接使用,提取日期是2020-06-16

https://storage.googleapis.com/quickdraw_dataset/full/binary/The%20Eiffel%20Tower.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/The%20Great%20Wall%20of%20China.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/The%20Mona%20Lisa.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/aircraft%20carrier.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/airplane.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/alarm%20clock.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/ambulance.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/angel.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/animal%20migration.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/ant.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/anvil.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/apple.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/arm.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/asparagus.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/axe.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/backpack.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/banana.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bandage.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/barn.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/baseball%20bat.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/baseball.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/basket.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/basketball.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bat.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bathtub.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/beach.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bear.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/beard.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bed.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bee.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/belt.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bench.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bicycle.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/binoculars.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bird.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/birthday%20cake.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/blackberry.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/blueberry.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/book.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/boomerang.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bottlecap.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bowtie.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bracelet.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/brain.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bread.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bridge.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/broccoli.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/broom.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bucket.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bulldozer.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bus.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/bush.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/butterfly.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/cactus.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/cake.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/calculator.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/calendar.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/camel.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/camera.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/camouflage.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/campfire.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/candle.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/cannon.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/canoe.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/car.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/carrot.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/castle.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/cat.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/ceiling%20fan.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/cell%20phone.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/cello.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/chair.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/chandelier.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/church.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/circle.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/clarinet.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/clock.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/cloud.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/coffee%20cup.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/compass.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/computer.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/cookie.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/cooler.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/couch.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/cow.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/crab.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/crayon.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/crocodile.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/crown.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/cruise%20ship.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/cup.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/diamond.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/dishwasher.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/diving%20board.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/dog.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/dolphin.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/donut.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/door.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/dragon.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/dresser.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/drill.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/drums.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/duck.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/dumbbell.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/ear.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/elbow.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/elephant.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/envelope.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/eraser.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/eye.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/eyeglasses.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/face.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/fan.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/feather.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/fence.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/finger.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/fire%20hydrant.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/fireplace.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/firetruck.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/fish.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/flamingo.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/flashlight.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/flip%20flops.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/floor%20lamp.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/flower.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/flying%20saucer.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/foot.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/fork.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/frog.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/frying%20pan.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/garden%20hose.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/garden.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/giraffe.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/goatee.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/golf%20club.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/grapes.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/grass.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/guitar.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hamburger.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hammer.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hand.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/harp.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hat.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/headphones.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hedgehog.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/helicopter.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/helmet.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hexagon.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hockey%20puck.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hockey%20stick.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/horse.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hospital.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hot%20air%20balloon.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hot%20dog.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hot%20tub.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hourglass.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/house%20plant.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/house.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/hurricane.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/ice%20cream.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/jacket.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/jail.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/kangaroo.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/key.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/keyboard.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/knee.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/knife.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/ladder.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/lantern.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/laptop.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/leaf.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/leg.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/light%20bulb.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/lighter.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/lighthouse.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/lightning.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/line.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/lion.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/lipstick.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/lobster.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/lollipop.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/mailbox.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/map.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/marker.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/matches.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/megaphone.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/mermaid.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/microphone.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/microwave.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/monkey.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/moon.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/mosquito.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/motorbike.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/mountain.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/mouse.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/moustache.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/mouth.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/mug.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/mushroom.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/nail.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/necklace.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/nose.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/ocean.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/octagon.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/octopus.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/onion.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/oven.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/owl.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/paint%20can.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/paintbrush.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/palm%20tree.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/panda.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/pants.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/paper%20clip.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/parachute.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/parrot.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/passport.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/peanut.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/pear.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/peas.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/pencil.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/penguin.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/piano.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/pickup%20truck.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/picture%20frame.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/pig.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/pillow.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/pineapple.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/pizza.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/pliers.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/police%20car.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/pond.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/pool.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/popsicle.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/postcard.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/potato.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/power%20outlet.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/purse.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/rabbit.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/raccoon.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/radio.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/rain.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/rainbow.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/rake.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/remote%20control.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/rhinoceros.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/rifle.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/river.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/roller%20coaster.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/rollerskates.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/sailboat.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/sandwich.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/saw.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/saxophone.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/school%20bus.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/scissors.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/scorpion.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/screwdriver.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/sea%20turtle.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/see%20saw.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/shark.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/sheep.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/shoe.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/shorts.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/shovel.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/sink.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/skateboard.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/skull.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/skyscraper.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/sleeping%20bag.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/smiley%20face.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/snail.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/snake.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/snorkel.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/snowflake.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/snowman.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/soccer%20ball.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/sock.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/speedboat.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/spider.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/spoon.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/spreadsheet.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/square.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/squiggle.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/squirrel.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/stairs.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/star.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/steak.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/stereo.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/stethoscope.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/stitches.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/stop%20sign.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/stove.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/strawberry.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/streetlight.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/string%20bean.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/submarine.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/suitcase.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/sun.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/swan.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/sweater.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/swing%20set.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/sword.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/syringe.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/t-shirt.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/table.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/teapot.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/teddy-bear.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/telephone.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/television.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/tennis%20racquet.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/tent.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/tiger.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/toaster.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/toe.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/toilet.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/tooth.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/toothbrush.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/toothpaste.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/tornado.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/tractor.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/traffic%20light.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/train.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/tree.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/triangle.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/trombone.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/truck.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/trumpet.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/umbrella.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/underwear.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/van.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/vase.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/violin.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/washing%20machine.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/watermelon.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/waterslide.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/whale.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/wheel.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/windmill.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/wine%20bottle.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/wine%20glass.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/wristwatch.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/yoga.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/zebra.bin
https://storage.googleapis.com/quickdraw_dataset/full/binary/zigzag.bin

现在可以直接通过命令行下载,需科学上网,下载安装Cloud SDK,通过gsutil命令下载,如果运行下载命令报gsutil ServiceException: 401 Anonymous caller does not have storage.objects.list access to bucket even though I'm loggedin in gcloud,则执行gcloud auth logingcloud auth application-default login即可,最下侧的命令行展示的是另外一个数据集的多个文件同时下载过程


quickdraw数据集下载相关推荐

  1. mnist等常用数据集下载地址,现成的.mat文件

    推荐一个机器学习常用数据集下载网址,LIIBSVM 数据集已经处理好的,可以直接用.

  2. Flickr30k图像标注数据集下载及使用方法(转载的,备忘)

    Flickr30k图像标注数据集下载及使用方法 这是该博主贴的链接:Flickr30k图像标注数据集下载及使用方法 直接从百度云盘中下载 链接:https://pan.baidu.com/s/1r0R ...

  3. Understanding Clouds from Satellite Images比赛的discussion调研与colab数据集下载配置

    colab数据集下载配置代码: %%time !pip install -U -q kaggle !mkdir -p ~/.kaggle!echo '{"username":&qu ...

  4. 【机器学习】 - 各种人脸数据集下载地址及说明汇总

    1. Olivetti Faces人脸数据集 由40个人组成,共计400张人脸: 每人的人脸图片为10张,包含正脸.侧脸以及不同的表情: 整个数据集就是一张大的人脸组合图片,下载地址:https:// ...

  5. MNIST数据集下载及可视化

    MNIST数据集介绍 MNIST数据集官网:http://yann.lecun.com/exdb/mnist/ MNIST数据库是非常经典的一个数据集,就像你学编程起初写一个"Hello W ...

  6. 深度学习 - MPII Human Pose Database数据集下载

    原数据集下载网页:http://human-pose.mpi-inf.mpg.de/#download 转载于:https://blog.51cto.com/396732/2072239

  7. 数据集下载OTB,VOT,UAV,鸢尾花

    OTB数据集下载百度网盘链接 链接:https://pan.baidu.com/s/1snsJF_7Sw_EbKtzdvLO1nw 提取码:ls23 VOT数据集下载百度网盘链接 链接:https:/ ...

  8. VOC2007数据集 VOC2012数据集下载 百度云

    VOC2007数据集 VOC2007数据集下载 百度云 Download VOC2007 trainval & test 链接:https://pan.baidu.com/s/1_uTFp4_ ...

  9. 视线估计14个常见数据集下载

    数据集1:Columbia Gaze 在网页填写一下自己的邮箱就可以获得下载地址(2.2G) wget 下载地址 unzip columbia_gaze_data_set.zip 数据集2:UTMul ...

最新文章

  1. oracle如何自动分析报告,ORACLE 性能分析报告的获取
  2. boost::statechart模块测量 BitMachine 的事件处理性能的测试程序
  3. eclipse中文版界面设置黑色_硬核干货总结IDEA开发的26个常用设置
  4. 01-复杂度1 最大子列和问题 (20 分)
  5. (JAVA)String类之比较方法
  6. java线程创建方式_Java创建线程安全的方法
  7. 雷丰阳spring系列的笔记_怒肝8个月源码,我成为了 Spring 开源贡献者
  8. WebView·开车指南
  9. vue+高德地图 点击地图获取经纬度和详细地址
  10. 中国交通信号控制技术发展回顾
  11. 如何拟合幂率分布的幂率
  12. 【复杂网络】当机器学习遇上复杂网络:解析微信朋友圈 Lookalike 算法
  13. 微分几何 Class 2 欧氏空间
  14. WMPF微信小程序框架 微信刷脸登录 获取openId 授权获取手机号 快速接入 快速集成
  15. 跳动的心 - HTML 代码
  16. Mybatis中模糊查询的SQL语句应该怎么写?
  17. 微积分入门:无穷小之比与无穷小求和
  18. Python爬虫批量下载文献
  19. java.awt包_java.awt包介绍
  20. 7.11 C语言练习(厘米换算英尺英寸:在一行中输出这个厘米数对应英制长度的英尺和英寸的整数值,中间用空格分开。)

热门文章

  1. 欧盟玩具新标准IEC/EN62115
  2. 【字体压缩】ttf字体压缩软件,默认保留常用3500字,可手动添加删减文字
  3. Watir自动化环境搭建
  4. 戴尔G3 3590 Opencore引导Mac 11.5.1 BigSur 完美驱动
  5. 移动应用技术开发大作业——Android平台个人简历
  6. asp毕业设计——基于asp+access的网页设计辅导系统设计与实现(毕业论文+程序源码)——网页设计辅导系统
  7. SonicwALL NSA-4600 防火墙基本介绍
  8. size_t 到底是什么类型(有图有真相)
  9. VCIP2021:基于神经网络的双向预测blending过程
  10. 软件测试管理工具 madis,测试管理工具TestDirector介绍