-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could you please give me an example of arranging ILSVRC2014 dataset? #70
Comments
Hello did you get an idea about the data arrangements? As I am having problem in validation dataset. |
Hello, can you provide the link to download the imagenet2014 dataset? |
https://image-net.org/challenges/LSVRC/2014/2014-downloads.php |
I also have problem about the arrangement of ILSVRC2014 in this project, it seems that author maybe use ILSVRC2012 rather than ILSVRC2014 ? update 2023.4.20: dataset holder
Note that, places365 keeps the original file structure, and renaming the holder is enough. |
Sorry to bother, could you tell how to split test dataset into the format in "ImageNet_LT_test.txt", since ILSVRC2012_img_test_v10102019.tar doesn't have the arctecture like test/n01440764 |
|
Hello, I am coming, about the dataset, first, you should download the original ILSVRC2012, specially, only downloading Training images (Task 1 & 2) and Validation images (all tasks) are enough:
Then, we decompress files “ILSVRC2012_img_train.tar” and “ILSVRC2012_img_val.tar”. Note that, "ILSVRC2012_img_test.tar" is not used in this project. Now, we finish decompression (ILSVRC2012_img_train.tar -> train, ILSVRC2012_img_val.tar -> val_tar):
Then, run the following code to generate test dataset (i.e., val):
Finally, you can see the structure in ""./large_scale_dataset/ImageNet/":
And the "val" holder( see the following image) is the corresponding test dataset, the "train" holder contains both the training and validation datasets. I try to look back upon full process of generating those holders, if it lacks something, please tell me. |
I have downloaded ILSVRC2014 and it looks like this:
Then I untar the training set, it looks like this:
So how to arrange them? Could you give me an example?(For example, the COCO dataset is usually arranged like this: annotations、train2017、val2017)
I am in urgent need and many thanks to you~~
The text was updated successfully, but these errors were encountered: