--- dataset_info: features: - name: image dtype: image - name: label dtype: class_label: names: '0': bonnet, poke bonnet '1': green mamba '2': langur '3': Doberman, Doberman pinscher '4': gyromitra '5': Saluki, gazelle hound '6': vacuum, vacuum cleaner '7': window screen '8': cocktail shaker '9': garden spider, Aranea diademata '10': garter snake, grass snake '11': carbonara '12': pineapple, ananas '13': computer keyboard, keypad '14': tripod '15': komondor '16': >- American lobster, Northern lobster, Maine lobster, Homarus americanus '17': bannister, banister, balustrade, balusters, handrail '18': honeycomb '19': tile roof '20': papillon '21': boathouse '22': stinkhorn, carrion fungus '23': jean, blue jean, denim '24': Chihuahua '25': Chesapeake Bay retriever '26': robin, American robin, Turdus migratorius '27': tub, vat '28': Great Dane '29': rotisserie '30': bottlecap '31': throne '32': little blue heron, Egretta caerulea '33': rock crab, Cancer irroratus '34': Rottweiler '35': lorikeet '36': Gila monster, Heloderma suspectum '37': head cabbage '38': car wheel '39': coyote, prairie wolf, brush wolf, Canis latrans '40': moped '41': milk can '42': mixing bowl '43': toy terrier '44': chocolate sauce, chocolate syrup '45': rocking chair, rocker '46': wing '47': park bench '48': ambulance '49': football helmet '50': leafhopper '51': cauliflower '52': pirate, pirate ship '53': purse '54': hare '55': lampshade, lamp shade '56': fiddler crab '57': standard poodle '58': Shih-Tzu '59': pedestal, plinth, footstall '60': gibbon, Hylobates lar '61': safety pin '62': English foxhound '63': chime, bell, gong '64': >- American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier '65': bassinet '66': wild boar, boar, Sus scrofa '67': theater curtain, theatre curtain '68': dung beetle '69': hognose snake, puff adder, sand viper '70': Mexican hairless '71': mortarboard '72': Walker hound, Walker foxhound '73': red fox, Vulpes vulpes '74': modem '75': slide rule, slipstick '76': walking stick, walkingstick, stick insect '77': cinema, movie theater, movie theatre, movie house, picture palace '78': meerkat, mierkat '79': kuvasz '80': obelisk '81': harmonica, mouth organ, harp, mouth harp '82': sarong '83': mousetrap '84': hard disc, hard disk, fixed disk '85': American coot, marsh hen, mud hen, water hen, Fulica americana '86': reel '87': pickup, pickup truck '88': iron, smoothing iron '89': tabby, tabby cat '90': ski mask '91': vizsla, Hungarian pointer '92': laptop, laptop computer '93': stretcher '94': Dutch oven '95': African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus '96': boxer '97': gasmask, respirator, gas helmet '98': goose '99': borzoi, Russian wolfhound splits: - name: train num_bytes: 8091813320.875 num_examples: 126689 - name: validation num_bytes: 314447246 num_examples: 5000 download_size: 8406986315 dataset_size: 8406260566.875 configs: - config_name: default data_files: - split: train path: data/train-* - split: validation path: data/validation-* task_categories: - image-classification size_categories: - 100K, 'label': 0 } ``` ### Data Fields The data instances have the following fields: - `image`: A `PIL.Image.Image` object containing the image. - `label`: an `int` classification label. The labels are indexed based on the sorted list of synset ids in [imagenet100.txt](https://raw.githubusercontent.com/HobbitLong/CMC/master/imagenet100.txt) which we automatically map to original class names. ### Data Splits | |train |validation| |-------------|------:|---------:| |# of examples|126689 |5000 | ## Additional Information ### Licensing Information 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: 1. Researcher shall use the Database only for non-commercial research and educational purposes. 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. 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. 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. 1. Princeton University and Stanford University reserve the right to terminate Researcher's access to the Database at any time. 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. 1. The law of the State of New Jersey shall apply to all disputes under this agreement. ### Citation Information ```bibtex @article{imagenet15russakovsky, 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} } @inproceedings{tian2020contrastive, title={Contrastive multiview coding}, author={Tian, Yonglong and Krishnan, Dilip and Isola, Phillip}, booktitle={Computer Vision--ECCV 2020: 16th European Conference, Glasgow, UK, August 23--28, 2020, Proceedings, Part XI 16}, pages={776--794}, year={2020}, organization={Springer} } ``` ### Contributions Thanks to the 🤗 authors for the [imagenet-1k](https://huggingface.co/datasets/imagenet-1k) dataset which was used as a reference.