Skip to content

Instantly share code, notes, and snippets.

@erykml
Created January 25, 2019 21:38
Show Gist options
  • Save erykml/c7d30c2fa31bc3d4889cfde11a104c7e to your computer and use it in GitHub Desktop.
Save erykml/c7d30c2fa31bc3d4889cfde11a104c7e to your computer and use it in GitHub Desktop.
!pip install gdown
# create directory for storing data
!mkdir -p data
# download zip file with training set
!gdown https://drive.google.com/uc?id=1z_vO2muBgzNGIa7JtY8OPmaeUC348jj4 && unzip -qq training_set.zip -d data/training_set
!rm training_set.zip
# download zip with test set
!gdown https://drive.google.com/uc?id=1ziwxAVrbDRfUTYMrFu0sn1B8OH-6gvej && unzip -qq test_set.zip -d data/test_set
!rm test_set.zip
# remove some leftover dir
!rm -r /content/data/test_set/__MACOSX/
# change dir to the one with data
!cd /content/data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment