Files
Varuna Jayasiri 7d1550dd67 fix ddpm attn
2022-09-12 08:30:27 +05:30
..
2022-09-11 16:53:13 +05:30
2022-06-09 15:51:38 +05:30
2022-09-07 09:31:38 +05:30
2022-09-07 09:31:38 +05:30
2022-09-07 09:31:38 +05:30
2022-09-12 08:30:27 +05:30

Denoising Diffusion Probabilistic Models (DDPM)

Open In Colab

This is a PyTorch implementation/tutorial of the paper Denoising Diffusion Probabilistic Models.

In simple terms, we get an image from data and add noise step by step. Then We train a model to predict that noise at each step and use the model to generate images.

Here is the UNet model that predicts the noise and training code. This file can generate samples and interpolations from a trained model.