Datasets:

Tasks:
Other
Multilinguality:
monolingual
Size Categories:
unknown
Language Creators:
found
Annotations Creators:
machine-generated
Source Datasets:
original
License:
Eugene Siow commited on
Commit
5c96471
1 Parent(s): edf5838
README.md ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: Set14
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 Set14
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**: https://sites.google.com/site/romanzeyde/research-interests
52
+ - **Repository**: https://huggingface.co/datasets/eugenesiow/Set14
53
+ - **Paper**: http://www.cs.technion.ac.il/users/wwwb/cgi-bin/tr-get.cgi/2010/CS/CS-2010-12.pdf
54
+ - **Leaderboard**: https://github.com/eugenesiow/super-image#scale-x2
55
+
56
+ ### Dataset Summary
57
+
58
+ Set14 is an evaluation dataset with 14 RGB images for the image super resolution task. It was first used as the test set of the paper "On single image scale-up using sparse-representations" by [Zeyde et al. (2010)](http://www.cs.technion.ac.il/users/wwwb/cgi-bin/tr-get.cgi/2010/CS/CS-2010-12.pdf).
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/Set14', '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/Set14_HR/baboon.png",
99
+ "lr": "/.cache/huggingface/datasets/downloads/extracted/Set14_LR_x2/baboon.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|14|
115
+ |bicubic_x3|14|
116
+ |bicubic_x4|14|
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**: [Zeyde et al.](http://www.cs.technion.ac.il/users/wwwb/cgi-bin/tr-get.cgi/2010/CS/CS-2010-12.pdf)
168
+
169
+ ### Licensing Information
170
+
171
+ Unknown.
172
+
173
+ ### Citation Information
174
+
175
+ ```bibtex
176
+ @inproceedings{zeyde2010single,
177
+ title={On single image scale-up using sparse-representations},
178
+ author={Zeyde, Roman and Elad, Michael and Protter, Matan},
179
+ booktitle={International conference on curves and surfaces},
180
+ pages={711--730},
181
+ year={2010},
182
+ organization={Springer}
183
+ }
184
+ ```
185
+
186
+ ### Contributions
187
+
188
+ Thanks to [@eugenesiow](https://github.com/eugenesiow) for adding this dataset.
Set14.py ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ """Set14 dataset: An evaluation dataset for the image super resolution task"""
16
+
17
+
18
+ import datasets
19
+ from pathlib import Path
20
+
21
+
22
+ _CITATION = """
23
+ @inproceedings{zeyde2010single,
24
+ title={On single image scale-up using sparse-representations},
25
+ author={Zeyde, Roman and Elad, Michael and Protter, Matan},
26
+ booktitle={International conference on curves and surfaces},
27
+ pages={711--730},
28
+ year={2010},
29
+ organization={Springer}
30
+ }
31
+ """
32
+
33
+ _DESCRIPTION = """
34
+ Set14 is an evaluation dataset with 14 RGB images for the image super resolution task.
35
+ """
36
+
37
+ _HOMEPAGE = "https://sites.google.com/site/romanzeyde/research-interests"
38
+
39
+ _LICENSE = "UNK"
40
+
41
+ _DL_URL = "https://huggingface.co/datasets/eugenesiow/Set14/resolve/main/data/"
42
+
43
+ _DEFAULT_CONFIG = "bicubic_x2"
44
+
45
+ _DATA_OPTIONS = {
46
+ "bicubic_x2": {
47
+ "hr": _DL_URL + "Set14_HR.tar.gz",
48
+ "lr": _DL_URL + "Set14_LR_x2.tar.gz",
49
+ },
50
+ "bicubic_x3": {
51
+ "hr": _DL_URL + "Set14_HR.tar.gz",
52
+ "lr": _DL_URL + "Set14_LR_x3.tar.gz",
53
+ },
54
+ "bicubic_x4": {
55
+ "hr": _DL_URL + "Set14_HR.tar.gz",
56
+ "lr": _DL_URL + "Set14_LR_x4.tar.gz",
57
+ }
58
+ }
59
+
60
+
61
+ class Set14Config(datasets.BuilderConfig):
62
+ """BuilderConfig for Set14."""
63
+
64
+ def __init__(
65
+ self,
66
+ name,
67
+ hr_url,
68
+ lr_url,
69
+ **kwargs,
70
+ ):
71
+ if name not in _DATA_OPTIONS:
72
+ raise ValueError("data must be one of %s" % _DATA_OPTIONS)
73
+ super(Set14Config, self).__init__(name=name, version=datasets.Version("1.0.0"), **kwargs)
74
+ self.hr_url = hr_url
75
+ self.lr_url = lr_url
76
+
77
+
78
+ class Set14(datasets.GeneratorBasedBuilder):
79
+ """Set14 dataset for single image super resolution evaluation."""
80
+
81
+ BUILDER_CONFIGS = [
82
+ Set14Config(
83
+ name=key,
84
+ hr_url=values['hr'],
85
+ lr_url=values['lr']
86
+ ) for key, values in _DATA_OPTIONS.items()
87
+ ]
88
+
89
+ DEFAULT_CONFIG_NAME = _DEFAULT_CONFIG
90
+
91
+ def _info(self):
92
+ features = datasets.Features(
93
+ {
94
+ "hr": datasets.Value("string"),
95
+ "lr": datasets.Value("string"),
96
+ }
97
+ )
98
+ return datasets.DatasetInfo(
99
+ description=_DESCRIPTION,
100
+ features=features,
101
+ supervised_keys=None,
102
+ homepage=_HOMEPAGE,
103
+ license=_LICENSE,
104
+ citation=_CITATION,
105
+ )
106
+
107
+ def _split_generators(self, dl_manager):
108
+ """Returns SplitGenerators."""
109
+ hr_data_dir = dl_manager.download_and_extract(self.config.hr_url)
110
+ lr_data_dir = dl_manager.download_and_extract(self.config.lr_url)
111
+ return [
112
+ datasets.SplitGenerator(
113
+ name=datasets.Split.VALIDATION,
114
+ # These kwargs will be passed to _generate_examples
115
+ gen_kwargs={
116
+ "lr_path": lr_data_dir,
117
+ "hr_path": str(Path(hr_data_dir) / 'Set14_HR')
118
+ },
119
+ )
120
+ ]
121
+
122
+ def _generate_examples(
123
+ self, hr_path, lr_path
124
+ ):
125
+ """ Yields examples as (key, example) tuples. """
126
+ # This method handles input defined in _split_generators to yield (key, example) tuples from the dataset.
127
+ # The `key` is here for legacy reason (tfds) and is not important in itself.
128
+ extensions = {'.jpg', '.jpeg', '.png'}
129
+ for file_path in sorted(Path(lr_path).glob("**/*")):
130
+ if file_path.suffix in extensions:
131
+ file_path_str = str(file_path.as_posix())
132
+ yield file_path_str, {
133
+ 'lr': file_path_str,
134
+ 'hr': str((Path(hr_path) / file_path.name).as_posix())
135
+ }
data/Set14_HR.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9624340e0467734ae5c3f1fc346d2b8a8e2e1319f452f113e5f33b02f225ed3
3
+ size 4978135
data/Set14_LR_x2.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a427e3bcaef2586bf97cf5273fa91d267106bb025964b4ebfd297e8f77a2c052
3
+ size 1383189
data/Set14_LR_x3.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:353de901a3ae1a017e888fd256a5ea78ae91bc47c5dc8dd0c57aefa75eb55c36
3
+ size 642483
data/Set14_LR_x4.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6a13a8df683f73061b5859a5f669813b165e8c9d26bac4884cfaa5f1f6883dd
3
+ size 376308