├── .gitignore ├── LICENSE ├── README.md ├── common ├── __init__.py └── load_records.py ├── meta ├── frequency_12k.json ├── imagenet_12k_labels.txt └── imagenet_22k_labels.txt ├── misc ├── missing.py ├── process.py └── resize.py ├── tfds ├── __init__.py ├── helpers │ └── __init__.py ├── imagenet12k.py ├── imagenet22k.py ├── imagenet22k_test.py ├── imagenet_12k_labels.txt └── imagenet_22k_labels.txt └── wds ├── build_wds.py └── tfds_to_wds.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/README.md -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/load_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/common/load_records.py -------------------------------------------------------------------------------- /meta/frequency_12k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/meta/frequency_12k.json -------------------------------------------------------------------------------- /meta/imagenet_12k_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/meta/imagenet_12k_labels.txt -------------------------------------------------------------------------------- /meta/imagenet_22k_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/meta/imagenet_22k_labels.txt -------------------------------------------------------------------------------- /misc/missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/misc/missing.py -------------------------------------------------------------------------------- /misc/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/misc/process.py -------------------------------------------------------------------------------- /misc/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/misc/resize.py -------------------------------------------------------------------------------- /tfds/__init__.py: -------------------------------------------------------------------------------- 1 | """imagenet12k dataset.""" 2 | 3 | -------------------------------------------------------------------------------- /tfds/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tfds/imagenet12k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/tfds/imagenet12k.py -------------------------------------------------------------------------------- /tfds/imagenet22k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/tfds/imagenet22k.py -------------------------------------------------------------------------------- /tfds/imagenet22k_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/tfds/imagenet22k_test.py -------------------------------------------------------------------------------- /tfds/imagenet_12k_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/tfds/imagenet_12k_labels.txt -------------------------------------------------------------------------------- /tfds/imagenet_22k_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/tfds/imagenet_22k_labels.txt -------------------------------------------------------------------------------- /wds/build_wds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/wds/build_wds.py -------------------------------------------------------------------------------- /wds/tfds_to_wds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwightman/imagenet-12k/HEAD/wds/tfds_to_wds.py --------------------------------------------------------------------------------