|
131 | 131 | 2, |
132 | 132 | None, |
133 | 133 | 'pytorch-implementation-of-a-denoising-diffusion-probabilistic-model-ddpm-trained-on-the-mnist-dataset'), |
| 134 | + ('What is a U-net?', 2, None, 'what-is-a-u-net'), |
134 | 135 | ('Problem with diffusion models', |
135 | 136 | 2, |
136 | 137 | None, |
|
228 | 229 | <!-- navigation toc: --> <li><a href="#techniques-for-speeding-up-diffusion-models" style="font-size: 80%;">Techniques for speeding up diffusion models</a></li> |
229 | 230 | <!-- navigation toc: --> <li><a href="#applications-of-diffusion-models" style="font-size: 80%;">Applications of diffusion models</a></li> |
230 | 231 | <!-- navigation toc: --> <li><a href="#pytorch-implementation-of-a-denoising-diffusion-probabilistic-model-ddpm-trained-on-the-mnist-dataset" style="font-size: 80%;">PyTorch implementation of a Denoising Diffusion Probabilistic Model (DDPM) trained on the MNIST dataset</a></li> |
| 232 | + <!-- navigation toc: --> <li><a href="#what-is-a-u-net" style="font-size: 80%;">What is a U-net?</a></li> |
231 | 233 | <!-- navigation toc: --> <li><a href="#problem-with-diffusion-models" style="font-size: 80%;">Problem with diffusion models</a></li> |
232 | 234 | <!-- navigation toc: --> <li><a href="#imports-and-utilities" style="font-size: 80%;">Imports and Utilities</a></li> |
233 | 235 | <!-- navigation toc: --> <li><a href="#hyperparameters-and-schedules" style="font-size: 80%;">Hyperparameters and schedules</a></li> |
@@ -800,6 +802,11 @@ <h2 id="pytorch-implementation-of-a-denoising-diffusion-probabilistic-model-ddpm |
800 | 802 | <li> Jackson-Kang’s PyTorch diffusion tutorial, see <a href="https://github.com/Jackson-Kang/Pytorch-Diffusion-Model-Tutorial" target="_self"><tt>https://github.com/Jackson-Kang/Pytorch-Diffusion-Model-Tutorial</tt></a> and</li> |
801 | 803 | <li> awjuliani’s PyTorch DDPM implementation, see <a href="https://github.com/awjuliani/pytorch-diffusion" target="_self"><tt>https://github.com/awjuliani/pytorch-diffusion</tt></a></li> |
802 | 804 | </ol> |
| 805 | +<!-- !split --> |
| 806 | +<h2 id="what-is-a-u-net" class="anchor">What is a U-net? </h2> |
| 807 | + |
| 808 | +<p>UNet is a type of convolutional neural network (CNN) Architecture that is primarily used for image segmentation tasks. See <a href="https://en.wikipedia.org/wiki/U-Net" target="_self"><tt>https://en.wikipedia.org/wiki/U-Net</tt></a> or <a href="https://www.sciencedirect.com/topics/computer-science/u-net" target="_self"><tt>https://www.sciencedirect.com/topics/computer-science/u-net</tt></a></p> |
| 809 | + |
803 | 810 | <!-- !split --> |
804 | 811 | <h2 id="problem-with-diffusion-models" class="anchor">Problem with diffusion models </h2> |
805 | 812 |
|
|
0 commit comments