Skip to content

Commit 1065163

Browse files
committed
Added notebooks to notebooks
1 parent a602dea commit 1065163

File tree

8 files changed

+2537
-28
lines changed

8 files changed

+2537
-28
lines changed

docs/BuildingBlocks/segmentation.ipynb

+165-17
Large diffs are not rendered by default.

docs/DDPM/4_diffusion.ipynb

+5-5
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"metadata": {},
5151
"source": [
5252
"## Variance schedule\n",
53-
"First implement our beta scheduler. It is a fine art choosing the correct schedule."
53+
"First implement our beta scheduler. There are many different types of schedules that can be used, such as linear, cosine, quadratic, etc. We will use a linear schedule to keep things simple. We also need to pick a value for $T$, the number of steps. We will use $T=150$. Adding more steps will increase the quality of the generated images, but will also increase the time it takes to train the model."
5454
]
5555
},
5656
{
@@ -86,7 +86,7 @@
8686
"x_t = \\sqrt{1 - \\beta_t}x_{t-1} + \\sqrt{\\beta_t}\\epsilon_t\n",
8787
"$$\n",
8888
"\n",
89-
"But of course we have to do this iteratively"
89+
"But of course we have to do this iteratively. The plot below looks at a sample image at different levels of noise."
9090
]
9191
},
9292
{
@@ -125,7 +125,7 @@
125125
"cell_type": "markdown",
126126
"metadata": {},
127127
"source": [
128-
"Now we define a new variable $\\alpha$ the cumulative product, $\\bar{\\alpha}$, and to make things easier, we also need to define $\\sqrt{\\bar{\\alpha}}$ and $\\sqrt{1-\\bar{\\alpha}}$"
128+
"Now we define a new variable \\\\( \\alpha \\\\) the cumulative product, $\\bar{\\alpha}$, and to make things easier, we also need to define $\\sqrt{\\bar{\\alpha}}$ and $\\sqrt{1-\\bar{\\alpha}}$"
129129
]
130130
},
131131
{
@@ -151,7 +151,7 @@
151151
"x_t = \\sqrt{\\bar{\\alpha}_t}x_0 + \\sqrt{1-\\bar{\\alpha}_t}\\epsilon\n",
152152
"$$\n",
153153
"\n",
154-
"where $\\epsilon \\sim N(0, 1)$."
154+
"where $\\epsilon \\sim N(0, 1)$"
155155
]
156156
},
157157
{
@@ -203,7 +203,7 @@
203203
"cell_type": "markdown",
204204
"metadata": {},
205205
"source": [
206-
"Great so it's basically the same"
206+
"Great so it's basically the same as before."
207207
]
208208
},
209209
{

docs/index.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,18 @@
66

77
<img src="./imgs/diffusion.webp" alt="Who doesn't love a cat picture" style="width:800px;"/>
88

9-
Welcome to the Introduction to Diffusion Models workshop offered by the Accelerate Programme for Scientific Discovery. Here you will find the slides for our in-person workshop, along with some material to get started.
9+
Welcome to the Introduction to Diffusion Models workshop offered by the Accelerate Programme for Scientific Discovery. In this workshop, we will learn how to build a diffusion model from scratch!
1010

1111
This workshop was originally delivered in-person at the University of Cambridge, but we have made the slides and some of the material available here for you to work through at your own pace.
1212

1313
In the main GitHub repository, there is a `notebooks` folder that contains the Jupyter notebooks that we used in the workshop. These notebooks are designed to be run on a local machine, and we recommend that you use a machine with a GPU to run them. If you don't have a GPU, you can use Google Colab to run the notebooks. Contained within the main repository is also a folder `diffusion_models` that contains the code for the Diffusion Models that we build in the workshop.
1414

15-
[:fontawesome-solid-book: Notebooks ](mailto:[email protected]){ .md-button }
15+
[:fontawesome-solid-book: Notebooks ](https://github.com/acceleratescience/diffusion-models/tree/main/notebooks){ .md-button }
1616

1717
This workshop is roughly divided into the following sections:
1818

1919
## Introduction
20-
An overview of the Accelerate Programme, and the history of image generation, including:
21-
- VAEs
22-
- GANs
23-
- Diffusion
20+
An overview of the Accelerate Programme, and the history of image generation, including VAEs, GANs, and Diffusion
2421

2522
## Physics
2623
How we can draw inspiration from the world of physics by exploring diffusion in fluids and charge distributions.

docs/javascripts/mathjax.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
window.MathJax = {
2+
tex: {
3+
inlineMath: [['$', '$'], ['\\(', '\\)']],
4+
// displayMath: [ ['$$', '$$'], ['\[', '\]'] ],
5+
processEscapes: true,
6+
processEnvironments: true
7+
},
8+
options: {
9+
// ignoreHtmlClass: ".*|",
10+
// processHtmlClass: "arithmatex"
11+
}
12+
};
13+
document$.subscribe(() => {
14+
MathJax.startup.output.clearCache()
15+
MathJax.typesetClear()
16+
MathJax.texReset()
17+
MathJax.typesetPromise()
18+
})

mkdocs.yml

+5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ nav:
2727
- Open Source Communities: OpenSource/index.md
2828
extra_css:
2929
- css/custom.css
30+
extra_javascript:
31+
- javascripts/mathjax.js
32+
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
3033
theme:
3134
favicon: imgs/trace.svg
3235
name: material
@@ -100,6 +103,8 @@ markdown_extensions:
100103
- pymdownx.highlight
101104
- pymdownx.inlinehilite
102105
- tables
106+
- pymdownx.arithmatex:
107+
generic: true
103108
- pymdownx.emoji:
104109
emoji_index: !!python/name:material.extensions.emoji.twemoji
105110
emoji_generator: !!python/name:material.extensions.emoji.to_svg

notebooks/1_VAEs.ipynb

+783
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)