VOC : http://host.robots.ox.ac.uk/pascal/VOC/
http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar
http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar
http://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.tar
coco : https://cocodataset.org/#download
http://images.cocodataset.org/zips/train2014.zip
http://images.cocodataset.org/annotations/annotations_trainval2014.zip
imagenet : https://image-net.org/
lsun : https://github.com/fyu/lsun
下载脚本 coco_download.sh
#!/usr/bin/env bash
mkdir data
wget http://images.cocodataset.org/zips/train2014.zip -P ./data/
unzip ./data/train2014.zip -d ./data/
rm ./data/train2014.zip
网友评论