Created
October 11, 2021 22:04
-
-
Save rahulvigneswaran/5de188f5adb7ff1b743285112e8039aa to your computer and use it in GitHub Desktop.
Instruction to get class names for the corresponding WordNet ID of ImageNet 2012 AKA ILSVRC2012 data set
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
# First run the following things | |
echo "Downloading..." | |
wget -c http://dl.caffe.berkeleyvision.org/caffe_ilsvrc12.tar.gz | |
echo "Unzipping..." | |
tar -xf caffe_ilsvrc12.tar.gz && rm -f caffe_ilsvrc12.tar.gz | |
echo "Done." | |
# Then check `synset_words.txt` for synset to class names mapping. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment