dansjdn eugenesiow commited on
Commit
f634b0e
·
verified ·
0 Parent(s):

Duplicate from eugenesiow/Set14

Browse files

Co-authored-by: Eugene Siow <eugenesiow@users.noreply.huggingface.co>

.gitattributes ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.bin.* filter=lfs diff=lfs merge=lfs -text
2
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.h5 filter=lfs diff=lfs merge=lfs -text
5
+ *.tflite filter=lfs diff=lfs merge=lfs -text
6
+ *.tar.gz filter=lfs diff=lfs merge=lfs -text
7
+ *.ot filter=lfs diff=lfs merge=lfs -text
8
+ *.onnx filter=lfs diff=lfs merge=lfs -text
9
+ *.arrow filter=lfs diff=lfs merge=lfs -text
10
+ *.ftz filter=lfs diff=lfs merge=lfs -text
11
+ *.joblib filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.pb filter=lfs diff=lfs merge=lfs -text
15
+ *.pt filter=lfs diff=lfs merge=lfs -text
16
+ *.pth filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ language_creators:
5
+ - found
6
+ language: []
7
+ license:
8
+ - other
9
+ multilinguality:
10
+ - monolingual
11
+ size_categories:
12
+ - unknown
13
+ source_datasets:
14
+ - original
15
+ task_categories:
16
+ - other
17
+ task_ids: []
18
+ pretty_name: Set14
19
+ tags:
20
+ - other-image-super-resolution
21
+ ---
22
+
23
+ # Dataset Card for Set14
24
+
25
+ ## Table of Contents
26
+ - [Table of Contents](#table-of-contents)
27
+ - [Dataset Description](#dataset-description)
28
+ - [Dataset Summary](#dataset-summary)
29
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
30
+ - [Languages](#languages)
31
+ - [Dataset Structure](#dataset-structure)
32
+ - [Data Instances](#data-instances)
33
+ - [Data Fields](#data-fields)
34
+ - [Data Splits](#data-splits)
35
+ - [Dataset Creation](#dataset-creation)
36
+ - [Curation Rationale](#curation-rationale)
37
+ - [Source Data](#source-data)
38
+ - [Annotations](#annotations)
39
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
40
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
41
+ - [Social Impact of Dataset](#social-impact-of-dataset)
42
+ - [Discussion of Biases](#discussion-of-biases)
43
+ - [Other Known Limitations](#other-known-limitations)
44
+ - [Additional Information](#additional-information)
45
+ - [Dataset Curators](#dataset-curators)
46
+ - [Licensing Information](#licensing-information)
47
+ - [Citation Information](#citation-information)
48
+ - [Contributions](#contributions)
49
+
50
+ ## Dataset Description
51
+
52
+ - **Homepage**: https://sites.google.com/site/romanzeyde/research-interests
53
+ - **Repository**: https://huggingface.co/datasets/eugenesiow/Set14
54
+ - **Paper**: http://www.cs.technion.ac.il/users/wwwb/cgi-bin/tr-get.cgi/2010/CS/CS-2010-12.pdf
55
+ - **Leaderboard**: https://github.com/eugenesiow/super-image#scale-x2
56
+
57
+ ### Dataset Summary
58
+
59
+ 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).
60
+
61
+ Install with `pip`:
62
+ ```bash
63
+ pip install datasets super-image
64
+ ```
65
+
66
+ Evaluate a model with the [`super-image`](https://github.com/eugenesiow/super-image) library:
67
+ ```python
68
+ from datasets import load_dataset
69
+ from super_image import EdsrModel
70
+ from super_image.data import EvalDataset, EvalMetrics
71
+
72
+ dataset = load_dataset('eugenesiow/Set14', 'bicubic_x2', split='validation')
73
+ eval_dataset = EvalDataset(dataset)
74
+ model = EdsrModel.from_pretrained('eugenesiow/edsr-base', scale=2)
75
+ EvalMetrics().evaluate(model, eval_dataset)
76
+ ```
77
+
78
+ ### Supported Tasks and Leaderboards
79
+
80
+ The dataset is commonly used for evaluation of the `image-super-resolution` task.
81
+
82
+ Unofficial [`super-image`](https://github.com/eugenesiow/super-image) leaderboard for:
83
+ - [Scale 2](https://github.com/eugenesiow/super-image#scale-x2)
84
+ - [Scale 3](https://github.com/eugenesiow/super-image#scale-x3)
85
+ - [Scale 4](https://github.com/eugenesiow/super-image#scale-x4)
86
+ - [Scale 8](https://github.com/eugenesiow/super-image#scale-x8)
87
+
88
+ ### Languages
89
+
90
+ Not applicable.
91
+
92
+ ## Dataset Structure
93
+
94
+ ### Data Instances
95
+
96
+ An example of `validation` for `bicubic_x2` looks as follows.
97
+ ```
98
+ {
99
+ "hr": "/.cache/huggingface/datasets/downloads/extracted/Set14_HR/baboon.png",
100
+ "lr": "/.cache/huggingface/datasets/downloads/extracted/Set14_LR_x2/baboon.png"
101
+ }
102
+ ```
103
+
104
+ ### Data Fields
105
+
106
+ The data fields are the same among all splits.
107
+
108
+ - `hr`: a `string` to the path of the High Resolution (HR) `.png` image.
109
+ - `lr`: a `string` to the path of the Low Resolution (LR) `.png` image.
110
+
111
+ ### Data Splits
112
+
113
+ | name |validation|
114
+ |-------|---:|
115
+ |bicubic_x2|14|
116
+ |bicubic_x3|14|
117
+ |bicubic_x4|14|
118
+
119
+
120
+ ## Dataset Creation
121
+
122
+ ### Curation Rationale
123
+
124
+ [More Information Needed]
125
+
126
+ ### Source Data
127
+
128
+ #### Initial Data Collection and Normalization
129
+
130
+ [More Information Needed]
131
+
132
+ #### Who are the source language producers?
133
+
134
+ [More Information Needed]
135
+
136
+ ### Annotations
137
+
138
+ #### Annotation process
139
+
140
+ No annotations.
141
+
142
+ #### Who are the annotators?
143
+
144
+ No annotators.
145
+
146
+ ### Personal and Sensitive Information
147
+
148
+ [More Information Needed]
149
+
150
+ ## Considerations for Using the Data
151
+
152
+ ### Social Impact of Dataset
153
+
154
+ [More Information Needed]
155
+
156
+ ### Discussion of Biases
157
+
158
+ [More Information Needed]
159
+
160
+ ### Other Known Limitations
161
+
162
+ [More Information Needed]
163
+
164
+ ## Additional Information
165
+
166
+ ### Dataset Curators
167
+
168
+ - **Original Authors**: [Zeyde et al.](http://www.cs.technion.ac.il/users/wwwb/cgi-bin/tr-get.cgi/2010/CS/CS-2010-12.pdf)
169
+
170
+ ### Licensing Information
171
+
172
+ Academic use only.
173
+
174
+ ### Citation Information
175
+
176
+ ```bibtex
177
+ @inproceedings{zeyde2010single,
178
+ title={On single image scale-up using sparse-representations},
179
+ author={Zeyde, Roman and Elad, Michael and Protter, Matan},
180
+ booktitle={International conference on curves and surfaces},
181
+ pages={711--730},
182
+ year={2010},
183
+ organization={Springer}
184
+ }
185
+ ```
186
+
187
+ ### Contributions
188
+
189
+ 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