KAIST-VICLab / FMA-Net

[CVPR 2024 Oral] Official repository of FMA-Net
https://kaist-viclab.github.io/fmanet-site/
MIT License
623 stars 44 forks source link

Can you show me the detailed hierarchy of REDS of data? I want to configure my own dataset. #16

Closed meiwu5 closed 4 months ago

meiwu5 commented 5 months ago

Can you show me the detailed hierarchy of REDS of data? I want to configure my own dataset.

GeunhyukYouk commented 5 months ago

Thank you for your interest.

I am currently on a business trip, but I will provide answers to the two issues you inquired about and explanations for retraining within a few days.

GeunhyukYouk commented 4 months ago

Hello, I apologize for the late response.

We use the REDS4 dataset, which has the exact same structure as the original REDS.

First, please download the REDS dataset to './dataset'. Then, run this code to generate REDS4.

The hierarchy of the generated REDS4 is as follows.

├──── dataset/
    ├──── REDS4/
       ├──── train_blur_bicubic/
          ├──── train/
             ├──── train_blur_bicubic/
                 ├──── X4/
                     ├──── 001/
                         ├──── 00000000.png
                         ├──── ...
                         ├──── 00000009.png/
                     ├──── 002/
                     ├──── ...

Additionally, it is also fine to modify the REDS_Dataset class in data.py.