@inproceedings{ren18fewshotssl,
author = {Mengye Ren and Eleni Triantafillou and Sachin Ravi and Jake Snell and Kevin Swersky and Joshua B. Tenenbaum and Hugo Larochelle and Richard S. Zemel},
title = {Meta-Learning for Semi-Supervised Few-Shot Classification},
booktitle = {Proceedings of 6th International Conference on Learning Representations {ICLR}},
year = {2018},
}
@article{ILSVRC15,
Author = {Olga Russakovsky and Jia Deng and Hao Su and Jonathan Krause and Sanjeev Satheesh and Sean Ma and Zhiheng Huang and Andrej Karpathy and Aditya Khosla and Michael Bernstein and Alexander C. Berg and Li Fei-Fei},
Title = {{ImageNet Large Scale Visual Recognition Challenge}},
Year = {2015},
journal = {International Journal of Computer Vision (IJCV)},
doi = {10.1007/s11263-015-0816-y},
volume = {115},
number = {3},
pages = {211-252}
}
The pickle file of tiered imagenet dataset is released in repo can be downloaded from here. The data structure is as follows:
mmfewshot
├── mmfewshot
├── tools
├── configs
├── data
│ ├── tiered_imagenet
│ │ ├── train_images_png.pkl
│ │ ├── train_labels.pkl
│ │ ├── val_images_png.pkl
│ │ ├── val_labels.pkl
│ │ ├── test_images_png.pkl
│ │ ├── test_labels.pkl
...
If you want to save memory usage, you can unzip the pickle files by:
python tools/data/classification/tiered-imagenet/unzip_tiered_imagenet.py --dir ./data/tiered_imagenet