SkillAgentSearch skills...

DRCT

Accepted by New Trends in Image Restoration and Enhancement workshop (NTIRE), in conjunction with CVPR 2024.

Install / Use

/learn @ming053l/DRCT
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

DRCT: Saving Image Super-resolution away from Information Bottleneck

✨✨ [CVPR NTIRE Oral Presentation]

PWC PWC PWC PWC

contributions welcome

[Paper Link] [Project Page] [Poster] [Model zoo] [Visual Results] [Slide] [Video]

Chih-Chung Hsu, Chia-Ming Lee, Yi-Shiuan Chou

Advanced Computer Vision LAB, National Cheng Kung University

Overview (SwinIR with Dense Connection)

  • Background and Motivation

In CNN-based super-resolution (SR) methods, dense connections are widely considered to be an effective way to preserve information and improve performance. (introduced by RDN / RRDB in ESRGAN...etc.)

However, SwinIR-based methods, such as HAT, CAT, DAT, etc., generally use Channel Attention Block or design novel and sophisticated Shift-Window Attention Mechanism to improve SR performance. These works ignore the information bottleneck that information flow will be lost deep in the network.

  • Main Contribution

Our work simply adds dense connections in SwinIR to improve performance and re-emphasizes the importance of dense connections in Swin-IR-based SR methods. Adding dense-connection within deep-feature extraction can stablize information flow, thereby boosting performance and keeping lightweight design (compared to the SOTA methods like HAT).

<img src=".\figures\overview.png" width="500"/> <img src=".\figures\drct_fix.gif" width="600"/> <img src=".\figures\4.png" width="400"/>

Benchmark results on SRx4 without x2 pretraining. Mulit-Adds are calculated for a 64x64 input. | Model | Params | Multi-Adds | Forward | FLOPs | Set5 | Set14 | BSD100 | Urban100 | Manga109 | Training Log | |:-----------:|:---------:|:-------:|:--------:|:--------:|:--------:|:--------:|:--------:|:--------:|:--------:|:--------:| | HAT | 20.77M | 11.22G | 2053M | 42.18G | 33.04 | 29.23 | 28.00 | 27.97 | 32.48 | - | | DRCT | 14.13M | 5.92G | 1857M | 7.92G | 33.11 | 29.35 | 28.18 | 28.06 | 32.59 | - | | HAT-L | 40.84M | 76.69G | 5165M | 79.60G | 33.30 | 29.47 | 28.09 | 28.60 | 33.09 | - | | DRCT-L | 27.58M | 9.20G | 4278M | 11.07G | 33.37 | 29.54 | 28.16 | 28.70 | 33.14 | - | | DRCT-XL (pretrained on ImageNet) | - | - | - | - | 32.97 / 0.91 | 29.08 / 0.80 | - | - | - | log

Real DRCT GAN SRx4. (Updated)

| Model | Training Data | Checkpoint | Log | |:-----------:|:---------:|:-------:|:--------:| | Real-DRCT-GAN_MSE_Model | DF2K + OST300 | Checkpoint | Log | | Real-DRCT-GAN_Finetuned from MSE | DF2K + OST300 | Checkpoint | Log |

Real DRCT GAN Comparison (Thanks to Phhofm!)

The images below demonstrate the enhancement capabilities of the 4xRealWebPhoto_v4_drct-l model compared to standard 4x Nearest Neighbor upscaling:

Showcase: Slow.pic link as interactive comparison with a Slider

<img src=".\figures\real-drct.png" width="1000"/>

Updates

  • ✅ 2024-03-31: Release the first version of the paper at Arxiv.
  • ✅ 2024-04-14: DRCT is accepted by NTIRE 2024, CVPR.
  • ✅ 2024-06-02: The pretrained DRCT-L is released.
  • ❌ 2024-06-02: MambaDRCT is released. MODEL.PY
    • Training process for DRCT + MambaIR is very slow, if you are interested about it, you can try to optimize/fit it up. This may be caused by the Recurrent nature of mambaIR, coupled with the feature map reusing from DRCT, which causes the training speed to be too slow (it may also be a problem with the equipment we use or the package version).
    • We try to combine DRCT with SS2D in mambaIR. However, the CUDA version of our GPU cannot be updated to the latest version, which leads to difficulties in installing the package and optimizing the training speed. So we don't plan to continue fixting MambaDRCT. If you are interested, you are welcome to use this code.
  • ✅ 2024-06-09: The pretrained DRCT model is released. model zoo
  • ✅ 2024-06-11: We have received a large number of requests to release pre-trained models and training records from ImageNet for several downstream applications, please refer to the following link:

[Training log on ImageNet] [Pretrained Weight (without fine-tuning on DF2K)]

  • ✅ 2024-06-12: DRCT have been selected for oral presentation in NTIRE!
  • ✅ 2024-06-14: We have received a large number of requests to release Feature maps and LAM Visualization, please refer to ./Visualization/.
  • 2024-06-24: DRCT-v2 is on the development.
  • ✅ 2024-07-08: Update the inference (with half precision) file, big thanks for @zelenooki87!
  • ✅ 2024-12-04: Update the mismatched part after re-training (SRx2). (Please see Arxiv)
  • ✅ 2024-12-04: Update the Model architecture description errors. (Please see Arxiv)
  • ✅ 2024-12-04: Update the Real-DRCT-GAN in google drive.

Environment

Installation

git clone https://github.com/ming053l/DRCT.git
conda create --name drct python=3.8 -y
conda activate drct
# CUDA 11.6
conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 cudatoolkit=11.6 -c pytorch -c conda-forge
cd DRCT
pip install -r requirements.txt
python setup.py develop

How To Inference on your own Dataset?

python inference.py --input_dir [input_dir ] --output_dir [input_dir ]  --model_path[model_path]

How To Test

  • Refer to ./options/test for the configuration file of the model to be tested, and prepare the testing data and pretrained model.
  • Then run the following codes (taking DRCT_SRx4_ImageNet-pretrain.pth as an example):
python drct/test.py -opt options/test/DRCT_SRx4_ImageNet-pretrain.yml

The testing results will be saved in the ./results folder.

  • Refer to ./options/test/DRCT_SRx4_ImageNet-LR.yml for inference without the ground truth image.

Note that the tile mode is also provided for limited GPU memory when testing. You can modify the specific settings of the tile mode in your custom testing option by referring to ./options/test/DRCT_tile_example.yml.

How To Train

  • Refer to ./options/train for the configuration file of the model to train.
  • Preparation of training data can refer to this page. ImageNet dataset can be downloaded at the official website.
  • Validation data can be download at [this page](https://github.com/ChaofWang/Awesome-Super-Resolution/blob/master/dataset.
View on GitHub
GitHub Stars356
CategoryDevelopment
Updated1d ago
Forks40

Languages

Jupyter Notebook

Security Score

95/100

Audited on Mar 30, 2026

No findings