Commit
·
129be05
1
Parent(s):
3cb8f73
Update README.md
Browse files
README.md
CHANGED
|
@@ -8,9 +8,11 @@ tags:
|
|
| 8 |
- ddpm
|
| 9 |
---
|
| 10 |
|
|
|
|
|
|
|
| 11 |
## Model description
|
| 12 |
|
| 13 |
-
The model uses a [U-Net](https://arxiv.org/abs/1505.04597) with identical input and output dimensions. It progressively downsamples and upsamples its input image, adding skip connections between layers having the same resolution. The architecture is a simplified version of the architecture of [DDPM](https://arxiv.org/abs/2006.11239). It consists of convolutional residual blocks and lacks attention layers. The network takes two inputs, the noisy images and the variances of their noise components, which it encodes using [sinusoidal embeddings](https://arxiv.org/abs/1706.03762).
|
| 14 |
|
| 15 |
## Intended uses & limitations
|
| 16 |
|
|
@@ -22,7 +24,9 @@ The model is trained on the [Oxford Flowers 102](https://www.tensorflow.org/data
|
|
| 22 |
|
| 23 |
## Training procedure
|
| 24 |
|
| 25 |
-
The model is trained to denoise noisy images, and can generate images by iteratively denoising pure Gaussian noise.
|
|
|
|
|
|
|
| 26 |
|
| 27 |
## Training hyperparameters
|
| 28 |
|
|
|
|
| 8 |
- ddpm
|
| 9 |
---
|
| 10 |
|
| 11 |
+
This model was created for the [Keras code example](https://keras.io/examples/generative/ddim/) on [denoising diffusion implicit models (DDIM)](https://arxiv.org/abs/2010.02502).
|
| 12 |
+
|
| 13 |
## Model description
|
| 14 |
|
| 15 |
+
The model uses a [U-Net](https://arxiv.org/abs/1505.04597) with identical input and output dimensions. It progressively downsamples and upsamples its input image, adding skip connections between layers having the same resolution. The architecture is a simplified version of the architecture of [DDPM](https://arxiv.org/abs/2006.11239). It consists of convolutional residual blocks and lacks attention layers. The network takes two inputs, the noisy images and the variances of their noise components, which it encodes using [sinusoidal embeddings](https://arxiv.org/abs/1706.03762).
|
| 16 |
|
| 17 |
## Intended uses & limitations
|
| 18 |
|
|
|
|
| 24 |
|
| 25 |
## Training procedure
|
| 26 |
|
| 27 |
+
The model is trained to denoise noisy images, and can generate images by iteratively denoising pure Gaussian noise.
|
| 28 |
+
|
| 29 |
+
For more details check out the [Keras code example](https://keras.io/examples/generative/ddim/), or the companion [code repository](https://github.com/beresandras/clear-diffusion-keras), with additional features..
|
| 30 |
|
| 31 |
## Training hyperparameters
|
| 32 |
|