数据集:
eugenesiow/PIRM
计算机处理:
monolingual语言创建人:
found批注创建人:
machine-generated源数据集:
original预印本库:
arxiv:1809.07517许可:
The PIRM dataset consists of 200 images, which are divided into two equal sets for validation and testing. These images cover diverse contents, including people, objects, environments, flora, natural scenery, etc. Images vary in size, and are typically ~300K pixels in resolution.
This dataset was first used for evaluating the perceptual quality of super-resolution algorithms in The 2018 PIRM challenge on Perceptual Super-resolution, in conjunction with ECCV 2018.
Install with pip :
pip install datasets super-image
Evaluate a model with the super-image library:
from datasets import load_dataset from super_image import EdsrModel from super_image.data import EvalDataset, EvalMetrics dataset = load_dataset('eugenesiow/PIRM', 'bicubic_x2', split='validation') eval_dataset = EvalDataset(dataset) model = EdsrModel.from_pretrained('eugenesiow/edsr-base', scale=2) EvalMetrics().evaluate(model, eval_dataset)
The dataset is commonly used for evaluation of the image-super-resolution task.
Unofficial super-image leaderboard for:
Not applicable.
An example of validation for bicubic_x2 looks as follows.
{ "hr": "/.cache/huggingface/datasets/downloads/extracted/PIRM_valid_HR/1.png", "lr": "/.cache/huggingface/datasets/downloads/extracted/PIRM_valid_LR_x2/1.png" }
The data fields are the same among all splits.
name | validation | test |
---|---|---|
bicubic_x2 | 100 | 100 |
bicubic_x3 | 100 | 100 |
bicubic_x4 | 100 | 100 |
unknown_x4 | 100 | 100 |
[More Information Needed]
[More Information Needed]
Who are the source language producers?[More Information Needed]
No annotations.
Who are the annotators?No annotators.
[More Information Needed]
[More Information Needed]
[More Information Needed]
[More Information Needed]
This dataset is published under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License .
@misc{blau20192018, title={The 2018 PIRM Challenge on Perceptual Image Super-resolution}, author={Yochai Blau and Roey Mechrez and Radu Timofte and Tomer Michaeli and Lihi Zelnik-Manor}, year={2019}, eprint={1809.07517}, archivePrefix={arXiv}, primaryClass={cs.CV} }
Thanks to @eugenesiow for adding this dataset.