The dataset viewer is not available for this dataset.
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
FGRestore Dataset README
This directory contains the FGRestore data and annotations for two tasks:
- Image quality score prediction (Regression)
- Pairwise preference prediction (Rank)
Directory Layout
annotations/IR_train.json: training set (contains both score and preference annotations)annotations/test_single/: test split for score predictionannotations/test_pairs/: test split for pairwise preference predictionimages/: distorted or restored imagesref/: reference images
Annotation Formats
1) Training: annotations/IR_train.json
Each sample is a pairwise record with both preference and score labels. Typical fields:
ref_image: reference image path relative toFGRestore(for example,ref/000000.png)image_nameA: candidate image A path (for example,images/000000.png)image_nameB: candidate image B path (for example,images/000001.png)human_preference_for_A: human preference label1: A is preferred over B0: B is preferred over A0.5: tie between A and B
score_normA: normalized score of image Ascore_normB: normalized score of image Btask: restoration task name (for example,Denoising)scene_id: scene identifier
2) Score Test Split: annotations/test_single/
Used to evaluate score prediction performance. Each record is a single-image sample. Typical fields:
ref_imageimage_namescore_normtaskscene_id
3) Preference Test Split: annotations/test_pairs/
Used to evaluate pairwise preference performance. Each record is a pairwise sample. Typical fields:
ref_imageimage_nameAimage_nameBhuman_preference_for_A(can be0,0.5, or1)score_normAscore_normBtaskscene_id
Official Train/Test Usage
- Training: use
FGRestore/annotations/IR_train.json - Score evaluation: use
FGRestore/annotations/test_single - Preference evaluation: use
FGRestore/annotations/test_pairs
Important Note for Scene IDs 3 and 4
For samples with scene_id equal to 3 or 4, a true pristine reference image does not exist.
In these cases, ref_image corresponds to the pre-restoration image, not a distortion-free ground-truth reference.
Suggested Metrics
- Score prediction (
test_single): SRCC / PLCC - Preference prediction (
test_pairs): Accuracy
Data Loading Notes
- All path fields are relative paths; use
FGRestoreas the data root when resolving files.
- Downloads last month
- 23