Skip to content

Commit 177541c

Browse files
authored
Enhance iterative denoising explanation in index.html
Updated explanation for iterative denoising to include strided timestamps for improved computation.
1 parent 6d403ef commit 177541c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

project-5/index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,10 @@ <h2>Part 1.4 – Iterative Denoising</h2>
298298

299299
Instead of using one step, we can obtain better results by iterativly denoising from step <code>t</code> until step 0. However, this means running the diffusion model 1000 times in the worst case, which is slow and costly.
300300

301-
Fortunately, we can speed up the computation by iterating in steps. Due to
302-
301+
Fortunately, we can speed up the computation by first defining series of strided timestamps, starting at close to 1000 and ending at 0. For the examples below, we will use <code>strided_timestamps = list(range(990, -1, -30))</code>. Then, we can use the formula
302+
303+
<
304+
303305
<div class="subsection">
304306
<h3>Code: iterative_denoise</h3>
305307
<pre><code># TODO

0 commit comments

Comments
 (0)