axiong commited on
Commit
762a23f
·
verified ·
1 Parent(s): 7bd290d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +92 -24
README.md CHANGED
@@ -1,24 +1,92 @@
1
- ---
2
- license: mit
3
- dataset_info:
4
- config_name: test
5
- features:
6
- - name: image
7
- dtype: image
8
- - name: wnid
9
- dtype: string
10
- - name: class_name
11
- dtype: string
12
- splits:
13
- - name: test
14
- num_bytes: 2355062808.0
15
- num_examples: 30000
16
- download_size: 2148902579
17
- dataset_size: 2355062808.0
18
- configs:
19
- - config_name: test
20
- data_files:
21
- - split: test
22
- path: test/test-*
23
- default: true
24
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ dataset_info:
4
+ config_name: test
5
+ features:
6
+ - name: image
7
+ dtype: image
8
+ - name: wnid
9
+ dtype: string
10
+ - name: class_name
11
+ dtype: string
12
+ splits:
13
+ - name: test
14
+ num_bytes: 2355062808.0
15
+ num_examples: 30000
16
+ download_size: 2148902579
17
+ dataset_size: 2355062808.0
18
+ configs:
19
+ - config_name: test
20
+ data_files:
21
+ - split: test
22
+ path: test/test-*
23
+ default: true
24
+ ---
25
+
26
+
27
+ # ImageNet-R
28
+
29
+
30
+ This repo is made to facilitate the evaluation of various pretraining models. It's constructed from the source file provided by [official implementation](https://github.com/hendrycks/imagenet-r).
31
+
32
+
33
+ ## Usage
34
+
35
+ ```python
36
+ from datasets import load_dataset
37
+
38
+ dataset = load_dataset('axiong/imagenet-r')
39
+ ```
40
+
41
+
42
+ ## Dataset Summary
43
+
44
+
45
+ ImageNet-R(endition) contains art, cartoons, deviantart, graffiti, embroidery, graphics, origami, paintings, patterns, plastic objects, plush objects, sculptures, sketches, tattoos, toys, and video game renditions of ImageNet classes.
46
+
47
+ ImageNet-R has renditions of 200 ImageNet classes resulting in 30,000 images.
48
+
49
+ [ImageNet-R](https://github.com/hendrycks/imagenet-r) is a dataset proposed on ICCV 2021 by Dan Hendrycks, Steven Basart, Norman Mu, Saurav Kadavath, Frank Wang, Evan Dorundo, Rahul Desai, Tyler Zhu, Samyak Parajuli, Mike Guo, Dawn Song, Jacob Steinhardt and Justin Gilme.
50
+ The detailed introduction could be found in their paper 'The Many` Faces of Robustness: A Critical Analysis of Out-of-Distribution Generalization'.
51
+
52
+ ![image/jpg](https://raw.githubusercontent.com/hendrycks/imagenet-r/master/yes.jpg)
53
+
54
+
55
+ ## Example Data
56
+
57
+ - `wnid` is the ID from wordnet, used to indicate the class label.
58
+ - `class_name` is the the corresponding class name of `wnid`
59
+
60
+
61
+ ```json
62
+ [
63
+ {
64
+ "image": <PIL Image>,
65
+ "wnid": "n02088094",
66
+ "class_name": "afghan_hound"
67
+ },
68
+ {
69
+ "image": <PIL Image>,
70
+ "wnid": "n07697537",
71
+ "class_name": "hotdog"
72
+ }
73
+ ]
74
+ ```
75
+
76
+ ## Citation
77
+
78
+ ```bibtex
79
+ @article{hendrycks2021many,
80
+ title={The Many Faces of Robustness: A Critical Analysis of Out-of-Distribution Generalization},
81
+ author={Dan Hendrycks and Steven Basart and Norman Mu and Saurav Kadavath and Frank Wang and Evan Dorundo and Rahul Desai and Tyler Zhu and Samyak Parajuli and Mike Guo and Dawn Song and Jacob Steinhardt and Justin Gilmer},
82
+ journal={ICCV},
83
+ year={2021}
84
+ }
85
+ ```
86
+
87
+
88
+ ## About Me
89
+ I am Weixiong Lin from SJTU, my research interests include multimodal representation learning, foundation model, data acceleration, etc.
90
+ Feel free to contact me if you are seeking cooperations.
91
+ - Email: wx_lin@sjtu.edu.cn
92
+ - Wechat: lwxgbsj