Skip to content

caojiezhang/DeqIR

Repository files navigation

Deep Equilibrium Diffusion Restoration with Parallel Sampling (CVPR 2024)

arXiv download visitors

Jiezhang Cao, Yue Shi, Kai Zhang, Yulun Zhang, Radu Timofte, Luc Van Gool

Computer Vision Lab, ETH Zurich


Abstract: Diffusion-based image restoration (IR) methods aim to use diffusion models to recover high-quality (HQ) images from degraded images and achieve promising performance. Due to the inherent property of diffusion models, most of these methods need long serial sampling chains to restore HQ images step-by-step. As a result, it leads to expensive sampling time and high computation costs. Moreover, such long sampling chains hinder understanding the relationship between the restoration results and the inputs since it is hard to compute the gradients in the whole chains. In this work, we aim to rethink the diffusion-based IR models through a different perspective, i.e., a deep equilibrium (DEQ) fixed point system. Specifically, we derive an analytical solution by modeling the entire sampling chain in diffusion-based IR models as a joint multivariate fixed point system. With the help of the analytical solution, we are able to conduct single-image sampling in a parallel way and restore HQ images without training. Furthermore, we compute fast gradients in DEQ and found that initialization optimization can boost performance and control the generation direction. Extensive experiments on benchmarks demonstrate the effectiveness of our proposed method on typical IR tasks and real-world settings.

🔗 Contents

Installation

  • Python 3.8.5, PyTorch >= 1.11.0
  • Requirements: see requirements.txt
  • Platforms: Ubuntu 18.04, cuda-11.3
# download code
git clone https://github.com/caojiezhang/DeqIR
cd DeqIR
conda create --name <env> --file requirements.txt
conda activate <env>

Pre-trained Models

For human face data, download this model (from SDEdit) and put it into pretrain_model/.

https://drive.google.com/file/d/1wSoA5fm_d6JBZk4RZ1SzWLMgev4WqH21/view?usp=share_link

For general images, download this model (from guided-diffusion) and put it into pretrain_model/.

wget https://openaipublic.blob.core.windows.net/diffusion/jul-2021/256x256_diffusion_uncond.pt

Inference

# usage
python main.py --config {DATASET}.yml --model Diffusion --exp {PROJECT_PATH} --out_name {OUT_NAME} --doc {DATASET} --sample --deg {DEGRADATION} --scale {SCALE} --timesteps {STEPS} --use_svd --etw {etw}

# Example: Deblurring
python main.py --config celeba_hq.yml --model Diffusion --exp experiments/ --out_name outputs_proj --doc celeba --sample --deg 'deblur_gauss' --timesteps 25 --use_svd --etw 0.1

Results

We apply DeqIR in some image restoration tasks. More results can be found in the paper.

Citation

If you find the code helpful in your research or work, please cite the following paper(s).

@InProceedings{cao2024deqir,
    title     = {Deep Equilibrium Diffusion Restoration with Parallel Sampling}, 
    author    = {Jiezhang Cao and Yue Shi and Kai Zhang and Yulun Zhang and Radu Timofte and Luc Van Gool},
    booktitle = {CVPR},
    year      = {2024},
}

This implementation is based on / inspired by:

About

PyTorch implementation of "Deep Equilibrium Diffusion Restoration with Parallel Sampling (CVPR 2024)"

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages