Skip to content

Instantly share code, notes, and snippets.

@ruimashita
Last active March 16, 2023 09:55
Show Gist options
  • Save ruimashita/5168fa304238dcf29317ea1ecfb48794 to your computer and use it in GitHub Desktop.
Save ruimashita/5168fa304238dcf29317ea1ecfb48794 to your computer and use it in GitHub Desktop.
#!/bin/bash
# download PASCAL VOC 2007 dataset
#
# ref: http://host.robots.ox.ac.uk/pascal/VOC/voc2007/index.html
echo "Downloading..."
wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar && \
wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar && \
wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCdevkit_08-Jun-2007.tar && \
echo "Done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment