From 5f5528eafea0f83eb5258a65bcf7b2d2ecfd7403 Mon Sep 17 00:00:00 2001 From: Dyllan McCreary Date: Fri, 16 Oct 2020 23:59:14 -0700 Subject: [PATCH] download full imagenet If you try to download using the current version, you actually only get about 2,000 images. the _t3 extension I believe is for tiny imagenet. To fix this, simply remove the _t3 extension and it downloads the 138gb train set. --- examples/imagenet/code/download.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/imagenet/code/download.sh b/examples/imagenet/code/download.sh index 4915530..8fbeca6 100755 --- a/examples/imagenet/code/download.sh +++ b/examples/imagenet/code/download.sh @@ -17,7 +17,7 @@ download () { ### From https://cloud.google.com/tpu/docs/imagenet-setup, please make sure you have the permission to download the files from [Imagenet](http://image-net.org) echo Downloading to `pwd` -for FILENAME in ILSVRC2012_img_val.tar ILSVRC2012_img_train_t3.tar +for FILENAME in ILSVRC2012_img_val.tar ILSVRC2012_img_train.tar do download http://image-net.org/challenges/LSVRC/2012/dd31405981ef5f776aa17412e1f0c112/${FILENAME} 2>&1 && echo finished downloading $FILENAME & done