Datasets:
Tasks:
Image Classification
Modalities:
Image
Formats:
parquet
Sub-tasks:
multi-class-image-classification
Languages:
English
Size:
100K - 1M
metadata
annotations_creators:
- crowdsourced
extra_gated_prompt: >-
By clicking on “Access repository” below, you also agree to ImageNet Terms of
Access:
[RESEARCHER_FULLNAME] (the "Researcher") has requested permission to use the
ImageNet database (the "Database") at Princeton University and Stanford
University. In exchange for such permission, Researcher hereby agrees to the
following terms and conditions:
1. Researcher shall use the Database only for non-commercial research and
educational purposes.
2. Princeton University, Stanford University and Hugging Face make no
representations or warranties regarding the Database, including but not
limited to warranties of non-infringement or fitness for a particular purpose.
3. Researcher accepts full responsibility for his or her use of the Database
and shall defend and indemnify the ImageNet team, Princeton University,
Stanford University and Hugging Face, including their employees, Trustees,
officers and agents, against any and all claims arising from Researcher's use
of the Database, including but not limited to Researcher's use of any copies
of copyrighted images that he or she may create from the Database.
4. Researcher may provide research associates and colleagues with access to
the Database provided that they first agree to be bound by these terms and
conditions.
5. Princeton University, Stanford University and Hugging Face reserve the
right to terminate Researcher's access to the Database at any time.
6. If Researcher is employed by a for-profit, commercial entity, Researcher's
employer shall also be bound by these terms and conditions, and Researcher
hereby represents that he or she is fully authorized to enter into this
agreement on behalf of such employer.
7. The law of the State of New Jersey shall apply to all disputes under this
agreement.
language:
- en
language_creators:
- crowdsourced
license: []
multilinguality:
- monolingual
paperswithcode_id: imagenet
pretty_name: Tiny-ImageNet
size_categories:
- 100K<n<1M
source_datasets:
- extended|imagenet-1k
task_categories:
- image-classification
task_ids:
- multi-class-image-classification
Dataset Card for tiny-imagenet
Dataset Description
- Homepage: https://www.kaggle.com/c/tiny-imagenet
- Repository: [Needs More Information]
- Paper: http://cs231n.stanford.edu/reports/2017/pdfs/930.pdf
- Leaderboard: https://paperswithcode.com/sota/image-classification-on-tiny-imagenet-1
Dataset Summary
Tiny ImageNet contains 100000 images of 200 classes (500 for each class) downsized to 64×64 colored images. Each class has 500 training images, 50 validation images, and 50 test images.
Languages
The class labels in the dataset are in English.
Dataset Structure
Data Instances
{
'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=64x64 at 0x1A800E8E190,
'label': 15
}
Data Fields
- image: A PIL.Image.Image object containing the image. Note that when accessing the image column: dataset[0]["image"] the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the "image" column, i.e. dataset[0]["image"] should always be preferred over dataset["image"][0].
- label: an int classification label. -1 for test set as the labels are missing.
Data Splits
Train | Valid | |
---|---|---|
# of samples | 100000 | 10000 |