Last active
July 30, 2021 02:09
-
-
Save ruimashita/0856cc42cc180f384ae4b69fd905164e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# download MS COCO dataset | |
# | |
# ref: http://mscoco.org/dataset/#download | |
echo "Downloading..." | |
wget http://msvocds.blob.core.windows.net/annotations-1-0-3/instances_train-val2014.zip && \ | |
wget http://msvocds.blob.core.windows.net/annotations-1-0-3/captions_train-val2014.zip && \ | |
wget http://msvocds.blob.core.windows.net/annotations-1-0-4/image_info_test2014.zip && \ | |
wget http://msvocds.blob.core.windows.net/annotations-1-0-4/image_info_test2015.zip && \ | |
wget http://msvocds.blob.core.windows.net/coco2014/train2014.zip && \ | |
wget http://msvocds.blob.core.windows.net/coco2014/val2014.zip && \ | |
wget http://msvocds.blob.core.windows.net/coco2014/test2014.zip && \ | |
wget http://msvocds.blob.core.windows.net/coco2015/test2015.zip && \ | |
echo "Done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey dude don't you need to unzip these files?