数据集:
eugenesiow/Set14
Set14 是一个用于图像超分辨率任务的评估数据集,包含14个RGB图像。它首次作为论文“On single image scale-up using sparse-representations”的测试集使用,作者是 Zeyde et al. (2010) 。
使用 pip 进行安装:
pip install datasets super-image
使用 super-image 库评估模型:
from datasets import load_dataset
from super_image import EdsrModel
from super_image.data import EvalDataset, EvalMetrics
dataset = load_dataset('eugenesiow/Set14', 'bicubic_x2', split='validation')
eval_dataset = EvalDataset(dataset)
model = EdsrModel.from_pretrained('eugenesiow/edsr-base', scale=2)
EvalMetrics().evaluate(model, eval_dataset)
该数据集通常用于评估图像超分辨率任务。
非官方 super-image 榜单:
不适用。
bicubic_x2 的验证示例如下所示。
{
"hr": "/.cache/huggingface/datasets/downloads/extracted/Set14_HR/baboon.png",
"lr": "/.cache/huggingface/datasets/downloads/extracted/Set14_LR_x2/baboon.png"
}
所有拆分中的数据字段相同。
| name | validation |
|---|---|
| bicubic_x2 | 14 |
| bicubic_x3 | 14 |
| bicubic_x4 | 14 |
[需要更多信息]
[需要更多信息]
谁是源语言的生产者?[需要更多信息]
没有注释。
谁是标注者?没有标注者。
[需要更多信息]
[需要更多信息]
[需要更多信息]
[需要更多信息]
仅限学术用途。
@inproceedings{zeyde2010single,
title={On single image scale-up using sparse-representations},
author={Zeyde, Roman and Elad, Michael and Protter, Matan},
booktitle={International conference on curves and surfaces},
pages={711--730},
year={2010},
organization={Springer}
}
感谢 @eugenesiow 添加此数据集。