evanarlian commited on
Commit
57f3f7e
1 Parent(s): 0d1db27

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -5
README.md CHANGED
@@ -20,11 +20,9 @@ task_categories:
20
  - image-classification
21
  task_ids:
22
  - multi-class-image-classification
23
- extra_gated_prompt: "You agree to not attempt to determine the identity of individuals in this dataset"
24
  extra_gated_fields:
25
- Company: text
26
- Country: text
27
- I agree to use this dataset for non-commercial use ONLY: checkbox
28
  dataset_info:
29
  features:
30
  - name: image
@@ -1065,4 +1063,45 @@ dataset_info:
1065
  ---
1066
  # Dataset Card for "imagenet_1k_resized_256"
1067
 
1068
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  - image-classification
21
  task_ids:
22
  - multi-class-image-classification
23
+ extra_gated_prompt: "https://huggingface.co/datasets/imagenet-1k"
24
  extra_gated_fields:
25
+ I have agreed to the original ImageNet dataset: checkbox
 
 
26
  dataset_info:
27
  features:
28
  - name: image
 
1063
  ---
1064
  # Dataset Card for "imagenet_1k_resized_256"
1065
 
1066
+ ## Dataset summary
1067
+ The same ImageNet dataset but all the smaller side resized to 256.
1068
+ A lot of pretraining workflows contain resizing images to 256 and random cropping to 224x224, this is why 256 is chosen.
1069
+ The resized dataset can also be downloaded much faster and consume less space than the original one.
1070
+ See [here](https://huggingface.co/datasets/imagenet-1k) for detailed readme.
1071
+
1072
+ ## Dataset Structure
1073
+ Below is the example of one row of data. Note that the labels in the test split are all -1.
1074
+ ```
1075
+ {
1076
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=256x384 at 0x276021C5EB8>,
1077
+ 'label': 23
1078
+ }
1079
+ ```
1080
+ The number of rows per split is the same as the original ImageNet.
1081
+ | |train |validation| test |
1082
+ |-------------|------:|---------:|------:|
1083
+ |# of examples|1281167|50000 |100000 |
1084
+
1085
+ ## Licensing Information
1086
+ In exchange for permission to use the ImageNet database (the "Database") at Princeton University and Stanford University, Researcher hereby agrees to the following terms and conditions:
1087
+ 1. Researcher shall use the Database only for non-commercial research and educational purposes.
1088
+ 1. Princeton University and Stanford University make no representations or warranties regarding the Database, including but not limited to warranties of non-infringement or fitness for a particular purpose.
1089
+ 1. Researcher accepts full responsibility for his or her use of the Database and shall defend and indemnify the ImageNet team, Princeton University, and Stanford University, 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.
1090
+ 1. 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.
1091
+ 1. Princeton University and Stanford University reserve the right to terminate Researcher's access to the Database at any time.
1092
+ 1. 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.
1093
+ 1. The law of the State of New Jersey shall apply to all disputes under this agreement.
1094
+
1095
+ ## Citation Information
1096
+ ```bibtex
1097
+ @article{imagenet15russakovsky,
1098
+ 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},
1099
+ Title = { {ImageNet Large Scale Visual Recognition Challenge} },
1100
+ Year = {2015},
1101
+ journal = {International Journal of Computer Vision (IJCV)},
1102
+ doi = {10.1007/s11263-015-0816-y},
1103
+ volume={115},
1104
+ number={3},
1105
+ pages={211-252}
1106
+ }
1107
+ ```