abc123-ABC eugenesiow commited on
Commit
46734fa
·
0 Parent(s):

Duplicate from eugenesiow/Urban100

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,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ language_creators:
5
+ - found
6
+ language: []
7
+ license:
8
+ - cc-by-4.0
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: Urban100
19
+ tags:
20
+ - other-image-super-resolution
21
+ ---
22
+
23
+ # Dataset Card for Urban100
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://github.com/jbhuang0604/SelfExSR
53
+ - **Repository**: https://huggingface.co/datasets/eugenesiow/Urban100
54
+ - **Paper**: https://openaccess.thecvf.com/content_cvpr_2015/html/Huang_Single_Image_Super-Resolution_2015_CVPR_paper.html
55
+ - **Leaderboard**: https://github.com/eugenesiow/super-image#scale-x2
56
+
57
+ ### Dataset Summary
58
+
59
+ The Urban100 dataset contains 100 images of urban scenes. It commonly used as a test set to evaluate the performance of super-resolution models. It was first published by [Huang et al. (2015)](https://openaccess.thecvf.com/content_cvpr_2015/html/Huang_Single_Image_Super-Resolution_2015_CVPR_paper.html) in the paper "Single Image Super-Resolution From Transformed Self-Exemplars".
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/Urban100', '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/Urban100_HR/img_001.png",
100
+ "lr": "/.cache/huggingface/datasets/downloads/extracted/Urban100_LR_x2/img_001.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|100|
116
+ |bicubic_x3|100|
117
+ |bicubic_x4|100|
118
+
119
+
120
+ ## Dataset Creation
121
+
122
+ ### Curation Rationale
123
+
124
+ The authors have created Urban100 containing 100 HR images with a variety of real-world structures.
125
+
126
+ ### Source Data
127
+
128
+ #### Initial Data Collection and Normalization
129
+
130
+ The authors constructed this dataset using images from Flickr (under CC license) using keywords such as urban, city, architecture, and structure.
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**: [Huang et al. (2015)](https://github.com/jbhuang0604/SelfExSR)
169
+
170
+ ### Licensing Information
171
+
172
+ The dataset provided uses images from Flikr under the CC (CC-BY-4.0) license.
173
+
174
+ ### Citation Information
175
+
176
+ ```bibtex
177
+ @InProceedings{Huang_2015_CVPR,
178
+ author = {Huang, Jia-Bin and Singh, Abhishek and Ahuja, Narendra},
179
+ title = {Single Image Super-Resolution From Transformed Self-Exemplars},
180
+ booktitle = {Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
181
+ month = {June},
182
+ year = {2015}
183
+ }
184
+ ```
185
+
186
+ ### Contributions
187
+
188
+ Thanks to [@eugenesiow](https://github.com/eugenesiow) for adding this dataset.
Urban100.py ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ """Urban100 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{martin2001database,
24
+ title={A database of human segmented natural images and its application to evaluating segmentation algorithms and measuring ecological statistics},
25
+ author={Martin, David and Fowlkes, Charless and Tal, Doron and Malik, Jitendra},
26
+ booktitle={Proceedings Eighth IEEE International Conference on Computer Vision. ICCV 2001},
27
+ volume={2},
28
+ pages={416--423},
29
+ year={2001},
30
+ organization={IEEE}
31
+ }
32
+ """
33
+
34
+ _DESCRIPTION = """
35
+ The Urban100 dataset contains 100 images of urban scenes.
36
+ It commonly used as a test set to evaluate the performance of super-resolution models.
37
+ """
38
+
39
+ _HOMEPAGE = "https://github.com/jbhuang0604/SelfExSR"
40
+
41
+ _LICENSE = "CC-BY-4.0"
42
+
43
+ _DL_URL = "https://huggingface.co/datasets/eugenesiow/Urban100/resolve/main/data/"
44
+
45
+ _DEFAULT_CONFIG = "bicubic_x2"
46
+
47
+ _DATA_OPTIONS = {
48
+ "bicubic_x2": {
49
+ "hr": _DL_URL + "Urban100_HR.tar.gz",
50
+ "lr": _DL_URL + "Urban100_LR_x2.tar.gz",
51
+ },
52
+ "bicubic_x3": {
53
+ "hr": _DL_URL + "Urban100_HR.tar.gz",
54
+ "lr": _DL_URL + "Urban100_LR_x3.tar.gz",
55
+ },
56
+ "bicubic_x4": {
57
+ "hr": _DL_URL + "Urban100_HR.tar.gz",
58
+ "lr": _DL_URL + "Urban100_LR_x4.tar.gz",
59
+ }
60
+ }
61
+
62
+
63
+ class Urban100Config(datasets.BuilderConfig):
64
+ """BuilderConfig for Urban100."""
65
+
66
+ def __init__(
67
+ self,
68
+ name,
69
+ hr_url,
70
+ lr_url,
71
+ **kwargs,
72
+ ):
73
+ if name not in _DATA_OPTIONS:
74
+ raise ValueError("data must be one of %s" % _DATA_OPTIONS)
75
+ super(Urban100Config, self).__init__(name=name, version=datasets.Version("1.0.0"), **kwargs)
76
+ self.hr_url = hr_url
77
+ self.lr_url = lr_url
78
+
79
+
80
+ class Urban100(datasets.GeneratorBasedBuilder):
81
+ """Urban100 dataset for single image super resolution evaluation."""
82
+
83
+ BUILDER_CONFIGS = [
84
+ Urban100Config(
85
+ name=key,
86
+ hr_url=values['hr'],
87
+ lr_url=values['lr']
88
+ ) for key, values in _DATA_OPTIONS.items()
89
+ ]
90
+
91
+ DEFAULT_CONFIG_NAME = _DEFAULT_CONFIG
92
+
93
+ def _info(self):
94
+ features = datasets.Features(
95
+ {
96
+ "hr": datasets.Value("string"),
97
+ "lr": datasets.Value("string"),
98
+ }
99
+ )
100
+ return datasets.DatasetInfo(
101
+ description=_DESCRIPTION,
102
+ features=features,
103
+ supervised_keys=None,
104
+ homepage=_HOMEPAGE,
105
+ license=_LICENSE,
106
+ citation=_CITATION,
107
+ )
108
+
109
+ def _split_generators(self, dl_manager):
110
+ """Returns SplitGenerators."""
111
+ hr_data_dir = dl_manager.download_and_extract(self.config.hr_url)
112
+ lr_data_dir = dl_manager.download_and_extract(self.config.lr_url)
113
+ return [
114
+ datasets.SplitGenerator(
115
+ name=datasets.Split.VALIDATION,
116
+ # These kwargs will be passed to _generate_examples
117
+ gen_kwargs={
118
+ "lr_path": lr_data_dir,
119
+ "hr_path": str(Path(hr_data_dir) / 'Urban100_HR')
120
+ },
121
+ )
122
+ ]
123
+
124
+ def _generate_examples(
125
+ self, hr_path, lr_path
126
+ ):
127
+ """ Yields examples as (key, example) tuples. """
128
+ # This method handles input defined in _split_generators to yield (key, example) tuples from the dataset.
129
+ # The `key` is here for legacy reason (tfds) and is not important in itself.
130
+ extensions = {'.png'}
131
+ for file_path in sorted(Path(lr_path).glob("**/*")):
132
+ if file_path.suffix in extensions:
133
+ file_path_str = str(file_path.as_posix())
134
+ yield file_path_str, {
135
+ 'lr': file_path_str,
136
+ 'hr': str((Path(hr_path) / file_path.name).as_posix())
137
+ }
data/Urban100_HR.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25b929945e053de19bf8f575bd0821abab1eac7f5f6c5c7980221d8ed13066c6
3
+ size 135388067
data/Urban100_LR_x2.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:297e26843a908bc1cd64d716b213fce8f6597b09f994356be25a5b1f7e3bc3d4
3
+ size 35489943
data/Urban100_LR_x3.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1afa859ed449871ca8f606a0e6556b087c1b48ede3c137bb356bc2314dd976d9
3
+ size 16345503
data/Urban100_LR_x4.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87f1ffd25247f3e6e9033c3ca1c60ab9fb2d66aeff782bb16fd5b7b7b3d3ac9e
3
+ size 9480190