Datasets:

Tasks:
Other
Multilinguality:
monolingual
Size Categories:
unknown
Language Creators:
found
Annotations Creators:
machine-generated
Source Datasets:
original
License:
Eugene Siow commited on
Commit
325646f
1 Parent(s): ae8af43
README.md ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ language_creators:
5
+ - found
6
+ languages: []
7
+ licenses:
8
+ - other-academic-use
9
+ multilinguality:
10
+ - monolingual
11
+ pretty_name: Set5
12
+ size_categories:
13
+ - unknown
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - other
18
+ task_ids:
19
+ - other-other-image-super-resolution
20
+ ---
21
+
22
+ # Dataset Card for Set5
23
+
24
+ ## Table of Contents
25
+ - [Table of Contents](#table-of-contents)
26
+ - [Dataset Description](#dataset-description)
27
+ - [Dataset Summary](#dataset-summary)
28
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
29
+ - [Languages](#languages)
30
+ - [Dataset Structure](#dataset-structure)
31
+ - [Data Instances](#data-instances)
32
+ - [Data Fields](#data-fields)
33
+ - [Data Splits](#data-splits)
34
+ - [Dataset Creation](#dataset-creation)
35
+ - [Curation Rationale](#curation-rationale)
36
+ - [Source Data](#source-data)
37
+ - [Annotations](#annotations)
38
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
39
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
40
+ - [Social Impact of Dataset](#social-impact-of-dataset)
41
+ - [Discussion of Biases](#discussion-of-biases)
42
+ - [Other Known Limitations](#other-known-limitations)
43
+ - [Additional Information](#additional-information)
44
+ - [Dataset Curators](#dataset-curators)
45
+ - [Licensing Information](#licensing-information)
46
+ - [Citation Information](#citation-information)
47
+ - [Contributions](#contributions)
48
+
49
+ ## Dataset Description
50
+
51
+ - **Homepage**: http://people.rennes.inria.fr/Aline.Roumy/results/SR_BMVC12.html
52
+ - **Repository**: https://huggingface.co/datasets/eugenesiow/Set5
53
+ - **Paper**: http://people.rennes.inria.fr/Aline.Roumy/publi/12bmvc_Bevilacqua_lowComplexitySR.pdf
54
+ - **Leaderboard**: https://github.com/eugenesiow/super-image#scale-x2
55
+
56
+ ### Dataset Summary
57
+
58
+ Set5 is a evaluation dataset with 5 RGB images for the image super resolution task. The 5 images of the dataset are (“baby”, “bird”, “butterfly”, “head”, “woman”).
59
+
60
+ Install with `pip`:
61
+ ```bash
62
+ pip install datasets super-image
63
+ ```
64
+
65
+ Evaluate a model with the [`super-image`](https://github.com/eugenesiow/super-image) library:
66
+ ```python
67
+ from datasets import load_dataset
68
+ from super_image import EdsrModel
69
+ from super_image.data import EvalDataset, EvalMetrics
70
+
71
+ dataset = load_dataset('eugenesiow/Set5', 'bicubic_x2', split='validation')
72
+ eval_dataset = EvalDataset(dataset)
73
+ model = EdsrModel.from_pretrained('eugenesiow/edsr-base', scale=2)
74
+ EvalMetrics().evaluate(model, eval_dataset)
75
+ ```
76
+
77
+ ### Supported Tasks and Leaderboards
78
+
79
+ The dataset is commonly used for evaluation of the `image-super-resolution` task.
80
+
81
+ Unofficial [`super-image`](https://github.com/eugenesiow/super-image) leaderboard for:
82
+ - [Scale 2](https://github.com/eugenesiow/super-image#scale-x2)
83
+ - [Scale 3](https://github.com/eugenesiow/super-image#scale-x3)
84
+ - [Scale 4](https://github.com/eugenesiow/super-image#scale-x4)
85
+ - [Scale 8](https://github.com/eugenesiow/super-image#scale-x8)
86
+
87
+ ### Languages
88
+
89
+ Not applicable.
90
+
91
+ ## Dataset Structure
92
+
93
+ ### Data Instances
94
+
95
+ An example of `validation` for `bicubic_x2` looks as follows.
96
+ ```
97
+ {
98
+ "hr": "/.cache/huggingface/datasets/downloads/extracted/Set5_HR/baby.png",
99
+ "lr": "/.cache/huggingface/datasets/downloads/extracted/Set5_LR_x2/baby.png"
100
+ }
101
+ ```
102
+
103
+ ### Data Fields
104
+
105
+ The data fields are the same among all splits.
106
+
107
+ - `hr`: a `string` to the path of the High Resolution (HR) `.png` image.
108
+ - `lr`: a `string` to the path of the Low Resolution (LR) `.png` image.
109
+
110
+ ### Data Splits
111
+
112
+ | name |validation|
113
+ |-------|---:|
114
+ |bicubic_x2|5|
115
+ |bicubic_x3|5|
116
+ |bicubic_x4|5|
117
+
118
+
119
+ ## Dataset Creation
120
+
121
+ ### Curation Rationale
122
+
123
+ [More Information Needed]
124
+
125
+ ### Source Data
126
+
127
+ #### Initial Data Collection and Normalization
128
+
129
+ [More Information Needed]
130
+
131
+ #### Who are the source language producers?
132
+
133
+ [More Information Needed]
134
+
135
+ ### Annotations
136
+
137
+ #### Annotation process
138
+
139
+ No annotations.
140
+
141
+ #### Who are the annotators?
142
+
143
+ No annotators.
144
+
145
+ ### Personal and Sensitive Information
146
+
147
+ [More Information Needed]
148
+
149
+ ## Considerations for Using the Data
150
+
151
+ ### Social Impact of Dataset
152
+
153
+ [More Information Needed]
154
+
155
+ ### Discussion of Biases
156
+
157
+ [More Information Needed]
158
+
159
+ ### Other Known Limitations
160
+
161
+ [More Information Needed]
162
+
163
+ ## Additional Information
164
+
165
+ ### Dataset Curators
166
+
167
+ - **Original Authors**: [Bevilacqua et al.](http://people.rennes.inria.fr/Aline.Roumy/results/SR_BMVC12.html)
168
+
169
+ ### Licensing Information
170
+
171
+ Unknown.
172
+
173
+ ### Citation Information
174
+
175
+ ```bibtex
176
+ @article{bevilacqua2012low,
177
+ title={Low-complexity single-image super-resolution based on nonnegative neighbor embedding},
178
+ author={Bevilacqua, Marco and Roumy, Aline and Guillemot, Christine and Alberi-Morel, Marie Line},
179
+ year={2012},
180
+ publisher={BMVA press}
181
+ }
182
+ ```
183
+
184
+ ### Contributions
185
+
186
+ Thanks to [@eugenesiow](https://github.com/eugenesiow) for adding this dataset.
data/Set5_HR.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:260fc447296333f6c2716bcd65513968c33b666f21a905537ee3330c51a1945b
3
+ size 852139
data/Set5_LR_x2.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4337dd3c9b0898a5c91013261b9dbdba80d53e27ff79ecf19d9f6585302c1e0
3
+ size 254915
data/Set5_LR_x3.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60b77169b3f686ce6463df37ce5c8c4217f937eff901f1dcd97228ef4823c603
3
+ size 122387
data/Set5_LR_x4.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1dc849c67618f6d762348f237142612fe1b966c4b29b3a36382585703cd8ee0
3
+ size 73309