Skip to content

Instantly share code, notes, and snippets.

@mkocabas
Created March 11, 2019 08:31
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mkocabas/7b5504746c77a3461faa7ee9a0ede463 to your computer and use it in GitHub Desktop.
Save mkocabas/7b5504746c77a3461faa7ee9a0ede463 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
mkdir coco
cd coco/
wget http://images.cocodataset.org/zips/train2017.zip
wget http://images.cocodataset.org/zips/val2017.zip
unzip train2017.zip
unzip val2017.zip
rm train2017.zip
rm val2017.zip
mkdir images
mv train2017 images/
mv val2017 images/
wget http://images.cocodataset.org/annotations/annotations_trainval2017.zip
unzip annotations_trainval2017.zip
wget http://images.cocodataset.org/zips/test2017.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment