美文网首页
深度学习数据集下载地址

深度学习数据集下载地址

作者: zeolite | 来源:发表于2021-07-23 17:50 被阅读0次

    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 
    

    相关文章

      网友评论

          本文标题:深度学习数据集下载地址

          本文链接:https://www.haomeiwen.com/subject/oreepltx.html