数据集:
eugenesiow/Set5
Set5 是一个用于图像超分辨率任务的评估数据集,包含5个RGB图像。数据集中的5个图像分别是(“baby”,“bird”,“butterfly”,“head”,“woman”)。
使用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/Set5', '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/Set5_HR/baby.png",
"lr": "/.cache/huggingface/datasets/downloads/extracted/Set5_LR_x2/baby.png"
}
所有拆分的数据字段相同。
| name | validation |
|---|---|
| bicubic_x2 | 5 |
| bicubic_x3 | 5 |
| bicubic_x4 | 5 |
[需要更多信息]
[需要更多信息]
谁是源语言的生产者?[需要更多信息]
没有注释。
谁是标注者?没有标注者。
[需要更多信息]
[需要更多信息]
[需要更多信息]
[需要更多信息]
仅限学术用途。
@article{bevilacqua2012low,
title={Low-complexity single-image super-resolution based on nonnegative neighbor embedding},
author={Bevilacqua, Marco and Roumy, Aline and Guillemot, Christine and Alberi-Morel, Marie Line},
year={2012},
publisher={BMVA press}
}
感谢 @eugenesiow 添加了这个数据集。