diffusers/models/vision/ddim
Patrick von Platen cbb19ee84e fix setup 2022-06-09 14:06:58 +02:00
..
README.md make from pretrained more general 2022-06-08 09:13:47 +00:00
example.py fix setup 2022-06-09 14:06:58 +02:00
modeling_ddim.py fix setup 2022-06-09 14:06:58 +02:00
run_ddpm.py make from pretrained more general 2022-06-08 09:13:47 +00:00
run_inference.py fix setup 2022-06-09 14:06:58 +02:00

README.md

Denoising Diffusion Implicit Models (DDIM)

Overview

DDPM was proposed in Denoising Diffusion Implicit Models by Jiaming Song, Chenlin Meng, Stefano Ermon

The abstract from the paper is the following:

Denoising diffusion probabilistic models (DDPMs) have achieved high quality image generation without adversarial training, yet they require simulating a Markov chain for many steps to produce a sample. To accelerate sampling, we present denoising diffusion implicit models (DDIMs), a more efficient class of iterative implicit probabilistic models with the same training procedure as DDPMs. In DDPMs, the generative process is defined as the reverse of a Markovian diffusion process. We construct a class of non-Markovian diffusion processes that lead to the same training objective, but whose reverse process can be much faster to sample from. We empirically demonstrate that DDIMs can produce high quality samples 10× to 50× faster in terms of wall-clock time compared to DDPMs, allow us to trade off computation for sample quality, and can perform semantically meaningful image interpolation directly in the latent space.

Tips:

  • ...
  • ...

This model was contributed by ???. The original code can be found here.