Skip to content

Instantly share code, notes, and snippets.

@ruimashita
Last active July 30, 2021 02:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ruimashita/0856cc42cc180f384ae4b69fd905164e to your computer and use it in GitHub Desktop.
Save ruimashita/0856cc42cc180f384ae4b69fd905164e to your computer and use it in GitHub Desktop.
#!/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."
@Yousanflics
Copy link

Hey dude don't you need to unzip these files?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment