Mirpri commited on
Commit
390625f
·
1 Parent(s): d128e77

add datasets and dataset card

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +77 -0
  2. RealSR/gt/Canon_001_HR.png +3 -0
  3. RealSR/gt/Canon_002_HR.png +3 -0
  4. RealSR/gt/Canon_003_HR.png +3 -0
  5. RealSR/gt/Canon_004_HR.png +3 -0
  6. RealSR/gt/Canon_005_HR.png +3 -0
  7. RealSR/gt/Canon_006_HR.png +3 -0
  8. RealSR/gt/Canon_007_HR.png +3 -0
  9. RealSR/gt/Canon_008_HR.png +3 -0
  10. RealSR/gt/Canon_009_HR.png +3 -0
  11. RealSR/gt/Canon_010_HR.png +3 -0
  12. RealSR/gt/Canon_011_HR.png +3 -0
  13. RealSR/gt/Canon_012_HR.png +3 -0
  14. RealSR/gt/Canon_013_HR.png +3 -0
  15. RealSR/gt/Canon_014_HR.png +3 -0
  16. RealSR/gt/Canon_015_HR.png +3 -0
  17. RealSR/gt/Canon_016_HR.png +3 -0
  18. RealSR/gt/Canon_017_HR.png +3 -0
  19. RealSR/gt/Canon_018_HR.png +3 -0
  20. RealSR/gt/Canon_019_HR.png +3 -0
  21. RealSR/gt/Canon_020_HR.png +3 -0
  22. RealSR/gt/Canon_021_HR.png +3 -0
  23. RealSR/gt/Canon_022_HR.png +3 -0
  24. RealSR/gt/Canon_023_HR.png +3 -0
  25. RealSR/gt/Canon_024_HR.png +3 -0
  26. RealSR/gt/Canon_025_HR.png +3 -0
  27. RealSR/gt/Canon_026_HR.png +3 -0
  28. RealSR/gt/Canon_027_HR.png +3 -0
  29. RealSR/gt/Canon_028_HR.png +3 -0
  30. RealSR/gt/Canon_029_HR.png +3 -0
  31. RealSR/gt/Canon_030_HR.png +3 -0
  32. RealSR/gt/Canon_031_HR.png +3 -0
  33. RealSR/gt/Canon_032_HR.png +3 -0
  34. RealSR/gt/Canon_033_HR.png +3 -0
  35. RealSR/gt/Canon_034_HR.png +3 -0
  36. RealSR/gt/Canon_035_HR.png +3 -0
  37. RealSR/gt/Canon_036_HR.png +3 -0
  38. RealSR/gt/Canon_037_HR.png +3 -0
  39. RealSR/gt/Canon_038_HR.png +3 -0
  40. RealSR/gt/Canon_039_HR.png +3 -0
  41. RealSR/gt/Canon_040_HR.png +3 -0
  42. RealSR/gt/Canon_041_HR.png +3 -0
  43. RealSR/gt/Canon_042_HR.png +3 -0
  44. RealSR/gt/Canon_043_HR.png +3 -0
  45. RealSR/gt/Canon_044_HR.png +3 -0
  46. RealSR/gt/Canon_045_HR.png +3 -0
  47. RealSR/gt/Canon_046_HR.png +3 -0
  48. RealSR/gt/Canon_047_HR.png +3 -0
  49. RealSR/gt/Canon_048_HR.png +3 -0
  50. RealSR/gt/Canon_049_HR.png +3 -0
README.md CHANGED
@@ -1,3 +1,80 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ task_categories:
4
+ - image-to-image
5
+ tags:
6
+ - image-super-resolution
7
+ - diffusion
8
+ - pytorch
9
+ dataset_info:
10
+ - config_name: imagenet512
11
+ features:
12
+ - name: image
13
+ dtype: image
14
+ - name: ground_truth
15
+ dtype: image
16
+ - config_name: RealSR
17
+ features:
18
+ - name: image
19
+ dtype: image
20
+ - name: ground_truth
21
+ dtype: image
22
  ---
23
+ # LPNSR: Prior-Enhanced Diffusion Image Super-Resolution Dataset
24
+
25
+ This repository contains the evaluation datasets and testing data associated with the paper **[LPNSR: Prior-Enhanced Diffusion Image Super-Resolution via LR-Guided Noise Prediction](https://huggingface.co/papers/2603.21045)**.
26
+
27
+ ## Project Links
28
+
29
+ - **Paper:** [arXiv:2603.21045](https://arxiv.org/abs/2603.21045)
30
+ - **GitHub Repository:** [Faze-Hsw/LPNSR](https://github.com/Faze-Hsw/LPNSR)
31
+
32
+ ## Dataset Description
33
+
34
+ This dataset collection is used to evaluate image super-resolution models on both synthetic and complex real-world degradations. It contains pairs of Low-Quality (LQ) and Ground-Truth (GT) high-resolution images.
35
+
36
+ The LPNSR approach utilizes an **LR-guided multi-input-aware noise predictor** instead of random Gaussian noise for partial diffusion initialization, allowing for efficient 4-step inference.
37
+
38
+ ### Sub-Datasets Included:
39
+
40
+ - **`imagenet512`**: Contains 3,000 synthetic image pairs used for validation/testing.
41
+ - **`RealSR`**: Contains 100 image pairs featuring real-world degradations captured from actual camera sensors.
42
+ - **`RealSet80`**: Contains 80 real-world highly degraded images without Ground-Truth references.
43
+
44
+ ## How to Use
45
+
46
+ Load the paired super-resolution datasets (`imagenet512`, `RealSR`) using the Hugging Face `datasets` library:
47
+
48
+ ```python
49
+ from datasets import load_dataset
50
+
51
+ # Load the imagenet512 subset
52
+ dataset_imagenet = load_dataset("mirpri/LPNSR-dataset", name="imagenet512")
53
+
54
+ # Load the RealSR subset
55
+ dataset_realsr = load_dataset("mirpri/LPNSR-dataset", name="RealSR")
56
+
57
+ # Check the properties of the first pair
58
+ print(dataset_imagenet['train'][0])
59
+ # Keys will map to 'image' (for LQ) and 'ground_truth' (for GT).
60
+ ```
61
+
62
+ ## Citation
63
+
64
+ If you find this dataset or the LPNSR framework useful, please cite our paper:
65
+
66
+ ```bibtex
67
+ @article{lpnsr2026,
68
+ title={LPNSR: Prior-Enhanced Diffusion Image Super-Resolution via LR-Guided Noise Prediction},
69
+ author={Huang, Shuwei and Liu, Shizhuo and Wei, Zijun},
70
+ journal={arXiv preprint arXiv:2603.21045},
71
+ year={2026},
72
+ eprint={2603.21045},
73
+ archivePrefix={arXiv},
74
+ primaryClass={cs.CV}
75
+ }
76
+ ```
77
+
78
+ ## Acknowledgement
79
+
80
+ This project is based on [ResShift](https://github.com/zsyOAOA/ResShift), [BasicSR](https://github.com/XPixelGroup/BasicSR), [SwinIR](https://github.com/JingyunLiang/SwinIR), and [Real-ESRGAN](https://github.com/xinntao/Real-ESRGAN).
RealSR/gt/Canon_001_HR.png ADDED

Git LFS Details

  • SHA256: e9f93e510727336b577a3ec41baa5be774e17b4efb97f3a64c3225e70011b15c
  • Pointer size: 131 Bytes
  • Size of remote file: 930 kB
RealSR/gt/Canon_002_HR.png ADDED

Git LFS Details

  • SHA256: 411ffe6ea3f295e6794c217a54eedb04efd99f10d7b6ba5852697ccc4275efe3
  • Pointer size: 132 Bytes
  • Size of remote file: 2.04 MB
RealSR/gt/Canon_003_HR.png ADDED

Git LFS Details

  • SHA256: ef6ed5e7ac1dbd82c816d1d4571577bf4737bdb4e249e86473d14db39dd3d16a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
RealSR/gt/Canon_004_HR.png ADDED

Git LFS Details

  • SHA256: dbe9779d502a63bb065c27396ad59b15ad540acf967612665a1c37934e1681ef
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
RealSR/gt/Canon_005_HR.png ADDED

Git LFS Details

  • SHA256: 50efec3be7345e80f628e462bafeb9986aca359586511a5eb857f54080ac703d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.03 MB
RealSR/gt/Canon_006_HR.png ADDED

Git LFS Details

  • SHA256: a0cc91c66db0d7569532668b6f071ec98eb99b480d6aefda7c8ce8fabb5ad9aa
  • Pointer size: 131 Bytes
  • Size of remote file: 856 kB
RealSR/gt/Canon_007_HR.png ADDED

Git LFS Details

  • SHA256: 07309c621633cf97b928881aada98cd2a987619d7ed329bddd43da68e439d16d
  • Pointer size: 131 Bytes
  • Size of remote file: 845 kB
RealSR/gt/Canon_008_HR.png ADDED

Git LFS Details

  • SHA256: 3f2aca3601581e62192ca72da5c720e5b0be4b9a12bbf8cef9ed3b740b6850bb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.28 MB
RealSR/gt/Canon_009_HR.png ADDED

Git LFS Details

  • SHA256: 5489a6e3711cea7b95a4bee6924489aa8f7c81aab2c67e1412daa5d14c45a75f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.21 MB
RealSR/gt/Canon_010_HR.png ADDED

Git LFS Details

  • SHA256: b1c096ed43e35f82e2828560afd55b8a489dac5bd115ab71ecad59105aff8e4f
  • Pointer size: 131 Bytes
  • Size of remote file: 938 kB
RealSR/gt/Canon_011_HR.png ADDED

Git LFS Details

  • SHA256: 17e0497f4bed621c4eed3a9a60403ff86c1451a079731aa97d72ab173372e5e1
  • Pointer size: 131 Bytes
  • Size of remote file: 771 kB
RealSR/gt/Canon_012_HR.png ADDED

Git LFS Details

  • SHA256: 664f0032e15cdfd4f79c49b72f840d51a4f753bf3a7e45367df35ffc6af4b1a5
  • Pointer size: 131 Bytes
  • Size of remote file: 626 kB
RealSR/gt/Canon_013_HR.png ADDED

Git LFS Details

  • SHA256: e8404cfb6d1bf8cc347d6055f9e524c81a12acbf92745785d1bf9cd84309b2b7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.06 MB
RealSR/gt/Canon_014_HR.png ADDED

Git LFS Details

  • SHA256: a7c40d9c7c7f09281453cd9f790e6daf4e33aac07e4ed80abb4242a522fe21b2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
RealSR/gt/Canon_015_HR.png ADDED

Git LFS Details

  • SHA256: 17b6d4a46bb46c842670ab489e4a3ac7dc4bd2c2dc069a2f7fd691ec97f52a06
  • Pointer size: 132 Bytes
  • Size of remote file: 1.79 MB
RealSR/gt/Canon_016_HR.png ADDED

Git LFS Details

  • SHA256: f06ecd95ed0f99182913e9919f9eb3edb14d0074af2a55346022f9cfb7df3f43
  • Pointer size: 132 Bytes
  • Size of remote file: 1.05 MB
RealSR/gt/Canon_017_HR.png ADDED

Git LFS Details

  • SHA256: c48c97e840ab1bcf1813fe4c1c28802c1d246f8d3130f7ad5ba241e208fdc9c6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.23 MB
RealSR/gt/Canon_018_HR.png ADDED

Git LFS Details

  • SHA256: 9951b5e7aef47e2431621230c66c240daf77cd9aa7ff869c6354a63f709cfb89
  • Pointer size: 131 Bytes
  • Size of remote file: 930 kB
RealSR/gt/Canon_019_HR.png ADDED

Git LFS Details

  • SHA256: 51bf7bf9a8885d833cfdda675a8bdeefd98be16ea80b0d262f2cc2d33b36ed8d
  • Pointer size: 131 Bytes
  • Size of remote file: 997 kB
RealSR/gt/Canon_020_HR.png ADDED

Git LFS Details

  • SHA256: d829a37919c36e3fbab984b592cd174f22c8ed6c51c0146fdf6cfa5fb59e8741
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
RealSR/gt/Canon_021_HR.png ADDED

Git LFS Details

  • SHA256: 02e51bee5b814bdf5414924f7d953f04189d594271c16f570ad06416b7849bcc
  • Pointer size: 131 Bytes
  • Size of remote file: 852 kB
RealSR/gt/Canon_022_HR.png ADDED

Git LFS Details

  • SHA256: bc279dfe54d090a5f67b96a8fd030f6080fc0967995ab4154f0a065dd5a6d539
  • Pointer size: 131 Bytes
  • Size of remote file: 766 kB
RealSR/gt/Canon_023_HR.png ADDED

Git LFS Details

  • SHA256: 89eaa1ffcae89b91f1c3b3e1fbe70f58e468d0bb60586577fdee91cf96aa9c8e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.1 MB
RealSR/gt/Canon_024_HR.png ADDED

Git LFS Details

  • SHA256: d03137e4154753e5a4726c459eb4258f64d153560c21ebd8fe1521eeeb6cf5bf
  • Pointer size: 131 Bytes
  • Size of remote file: 956 kB
RealSR/gt/Canon_025_HR.png ADDED

Git LFS Details

  • SHA256: 10b876fe8482174a5f0d48f18973a5c5eead2a85fff97da7622972b41526dd3e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.02 MB
RealSR/gt/Canon_026_HR.png ADDED

Git LFS Details

  • SHA256: ce40fb0728f0bfa3649656fa0399d628c1e16e8e07455d8274525ad4cf09d8ca
  • Pointer size: 132 Bytes
  • Size of remote file: 1.1 MB
RealSR/gt/Canon_027_HR.png ADDED

Git LFS Details

  • SHA256: 24ece572dafe13d62138e9aabd82b5751368b06cdf50c8a945343f37f8cbf4c1
  • Pointer size: 131 Bytes
  • Size of remote file: 941 kB
RealSR/gt/Canon_028_HR.png ADDED

Git LFS Details

  • SHA256: 87baa2516a3b0e4baa20a1dc48dc9adb900e82905a01316da74acb70846bb144
  • Pointer size: 132 Bytes
  • Size of remote file: 1.06 MB
RealSR/gt/Canon_029_HR.png ADDED

Git LFS Details

  • SHA256: f1c723cf863846f5a75a3ef1b7e0ce199375e2b919596e4dc3088be5a2835b44
  • Pointer size: 131 Bytes
  • Size of remote file: 772 kB
RealSR/gt/Canon_030_HR.png ADDED

Git LFS Details

  • SHA256: 8a6afa7c1dbce4c4383d113412f5ef1c63e113a049503710867caa15e468b40d
  • Pointer size: 131 Bytes
  • Size of remote file: 728 kB
RealSR/gt/Canon_031_HR.png ADDED

Git LFS Details

  • SHA256: 3f8bbf833e3dfd21702214ebb7f98504d03e0b23d1658f564a24b00d7119ea5b
  • Pointer size: 131 Bytes
  • Size of remote file: 1,000 kB
RealSR/gt/Canon_032_HR.png ADDED

Git LFS Details

  • SHA256: e277900754ae6bc2ea729f47e85ec2f200126e2578e5645028de117979fcdc51
  • Pointer size: 132 Bytes
  • Size of remote file: 1.14 MB
RealSR/gt/Canon_033_HR.png ADDED

Git LFS Details

  • SHA256: a4bfe6f58f97a06caad420c146a1cc42c85ed66370b1ded0571468d33f02d087
  • Pointer size: 132 Bytes
  • Size of remote file: 1.14 MB
RealSR/gt/Canon_034_HR.png ADDED

Git LFS Details

  • SHA256: 51f2d3c431f3847eb34cd44a35484700a2929c1a92abd82a79da81c0f9d09ec3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.1 MB
RealSR/gt/Canon_035_HR.png ADDED

Git LFS Details

  • SHA256: dc1c53e4c8b5203c1381e600c639d1a2dcc2e1de24ffc8d0bf9a39187a8b46de
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
RealSR/gt/Canon_036_HR.png ADDED

Git LFS Details

  • SHA256: e1d44b00492c7e05da9ff5157a012ee534b34d9c65f72b279a585cae1e75b7f6
  • Pointer size: 131 Bytes
  • Size of remote file: 553 kB
RealSR/gt/Canon_037_HR.png ADDED

Git LFS Details

  • SHA256: 31bb34637044a83ec8147eb494359a2607abbedf0ca005764007f86cc5200cf9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
RealSR/gt/Canon_038_HR.png ADDED

Git LFS Details

  • SHA256: a3796424baf1d44bf21da684b4fc620dd8540fd84eb92916ca2b418e75cf5c22
  • Pointer size: 132 Bytes
  • Size of remote file: 2.31 MB
RealSR/gt/Canon_039_HR.png ADDED

Git LFS Details

  • SHA256: bd41279ebae4ff5d7d1d7a0b405ee4ed104a48455b007cfbafe5c779572db9e6
  • Pointer size: 131 Bytes
  • Size of remote file: 721 kB
RealSR/gt/Canon_040_HR.png ADDED

Git LFS Details

  • SHA256: 5133c46c25a1e8762a21ccc738b9bac015ef76f7f23330d920c1da6d2ca2d268
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
RealSR/gt/Canon_041_HR.png ADDED

Git LFS Details

  • SHA256: 2ae3c4602d5531ca408c634984426841af2001257dc13fa69c46c4090f48d181
  • Pointer size: 132 Bytes
  • Size of remote file: 2.37 MB
RealSR/gt/Canon_042_HR.png ADDED

Git LFS Details

  • SHA256: dcbf0f21d2892e3dbe71f9ecafffb2f85c382cd41cecc1f5267b7f71ee86b776
  • Pointer size: 131 Bytes
  • Size of remote file: 795 kB
RealSR/gt/Canon_043_HR.png ADDED

Git LFS Details

  • SHA256: 21360e9848e115b0b02c4c78e8fcfd180240d5fccb8a4387e98889d41b1989b3
  • Pointer size: 131 Bytes
  • Size of remote file: 932 kB
RealSR/gt/Canon_044_HR.png ADDED

Git LFS Details

  • SHA256: 5297b9eb86c5949215c1051809d3580b940d370d23b310d0b444af6799a5bcc7
  • Pointer size: 132 Bytes
  • Size of remote file: 2.71 MB
RealSR/gt/Canon_045_HR.png ADDED

Git LFS Details

  • SHA256: 80cd345cdb1e045ea8e0bca34736c070f4b0be28d9775a2a4a5b864402cc121a
  • Pointer size: 132 Bytes
  • Size of remote file: 3 MB
RealSR/gt/Canon_046_HR.png ADDED

Git LFS Details

  • SHA256: c95160799841bbfcbb66ebb5f7fbb650343b58d811920a747687148ee9fa1abd
  • Pointer size: 132 Bytes
  • Size of remote file: 5.22 MB
RealSR/gt/Canon_047_HR.png ADDED

Git LFS Details

  • SHA256: 2a808f035ef3dacf72b94797483adc6fa08ac6e68ca6d8400ad6dff1a1e9320b
  • Pointer size: 132 Bytes
  • Size of remote file: 4.02 MB
RealSR/gt/Canon_048_HR.png ADDED

Git LFS Details

  • SHA256: 534476fad2a9c084aafb9d8c1f94dad33502f212f41d3353c117fca5a6533ad9
  • Pointer size: 132 Bytes
  • Size of remote file: 3.33 MB
RealSR/gt/Canon_049_HR.png ADDED

Git LFS Details

  • SHA256: 937602e290d438779e34e424814e6e5c0dfd425f708309888e6ce3e93c7514ea
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB