forked from eje24/iap-diffusion-class
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab_three.html
78 lines (53 loc) · 2.76 KB
/
lab_three.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="og:url" content="http://localhost:4000/">
<meta property="og:site_name" content="Missing Semester">
<meta name="twitter:title" content="Generative AI with Stochastic Differential Equations - IAP 2025">
<meta property="og:title" content="Generative AI with Stochastic Differential Equations - IAP 2025">
<title>
Lab Three
</title>
<link rel="stylesheet" href="./main.css">
<link rel="stylesheet" href="/static/css/syntax.css">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic,600italic,700italic,900italic&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Source+Code+Pro:200,300,400,500,600,700,900&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-P7WVHD84D1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-P7WVHD84D1');
</script>
</head>
<body>
<div id="nav-bg">
<nav id="top-nav" style='flex-grow: 0;'>
<a href="index.html" id="site-title" class="pull-left">6.S184/6.S975</a>
</nav>
</div>
<div id="content">
<h1 class="title">Lab Three</h1>
<p>
Welcome to lab three! In this lab, we'll be applying flow matching and score matching to construct a conditional image generator. </p>
<p>
<b>Released:</b> Tuesday, January 28 @ 12:30 pm ET<br>
<b>Due:</b> Monday, February 3 @ 5:00 pm ET (on Gradescope)<br>
<b>Instructions:</b> To complete this lab, follow the instructions below:
<ol>
<li> Download lab_three.ipynb <a href="https://github.com/eje24/iap-diffusion-labs/blob/main/labs/lab_three.ipynb">from GitHub</a> and open in your favorite Jupyter notebook environment (one good choice is Google Colab).</li>
<li> Follow the instructions in the lab to answer the questions.</li>
<li> Once all questions have been completed, export your notebook to a PDF, and submit to Gradescope via Canvas. Please do not clear cell output, as this makes it harder to grade!</li>
<li> If you think there's a mistake in the lab, please fill out <a href="https://forms.gle/iixgq4E2wkwudEb19">this form</a>.</li>
</ol>
Have fun!
</p>
</div>
</body>
</html>