DDPM sets a new bar for image generation on CIFAR-10
Generative image modelingBefore 2020, GANs dominated high-fidelity image synthesis but were notoriously unstable to train and prone to mode collapse. It was unclear whether a likelihood-style model trained with a simple regression loss could compete on raw sample quality.
Ho, Jain and Abbeel trained a U-Net to predict the noise added by a fixed 1000-step Gaussian forward process, optimizing the simplified denoising MSE objective, then generated samples by running the learned reverse chain from pure noise back to a clean image.
On unconditional CIFAR-10, DDPM reached an FID of 3.17 and an Inception score of 9.46, beating the strong GAN baselines of the time — and did so with a stable, non-adversarial training procedure. The result kicked off the wave of work (DDIM, score-based SDEs, latent diffusion) that made diffusion the default approach for image, audio, and video generation.
Source: Denoising Diffusion Probabilistic Models — Ho, J., Jain, A. and Abbeel, P.