Skip to content

Commit 75c903e

Browse files
committed
more schedule
1 parent f04f1bf commit 75c903e

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

src/pages/index.astro

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,21 @@ import Header from '../components/Header.astro';
55
import { SITE_DESCRIPTION, SITE_TITLE } from '../consts';
66
77
const schedule = [
8-
{ date: "Wed Sept 10", description: "Cancelled", material: "TBD" },
9-
{ date: "Thurs Sept 11", description: "Overview, <a href='lessons/introduction'>introduction to generative models</a>, <a href='lessons/maximum_likelihood'>maximum likelihood</a>, Expectation Maximization", material: "TBD" },
10-
{ date: "Wed Sept 17", description: `
8+
{ date: "Wed Sept 10th", description: "Cancelled", material: "TBD" },
9+
{ date: "Thurs Sept 11th", description: "Overview, <a href='lessons/introduction'>introduction to generative models</a>, <a href='lessons/maximum_likelihood'>maximum likelihood</a>, Expectation Maximization", material: "TBD" },
10+
{ date: "Wed Sept 17th", description: `
1111
Back to GMM (<a href="https://dl.heeere.com/2025-genmod-02/">slides</a>, <a href="https://dl.heeere.com/2025-genmod-02.pdf">pdf</a>),
1212
Bayesianism, variational inference, Variational autoencoders, (reparametrization trick)
1313
`, material: "TBD" },
14-
{ date: "Thurs Sept 18", description: "Cancelled", material: "TBD" },
15-
{ date: "Wed Sept 24", description: "Normalizing Flows", material: "TBD" },
16-
{ date: "Thur Sept 25", description: "Lab 1: simple generative models, numpy+pytorch, autoencoders", material: "TBD" },
14+
{ date: "Thurs Sept 18th", description: "Cancelled", material: "TBD" },
15+
{ date: "Wed Sept 24th", description: "Normalizing Flows", material: "TBD" },
16+
{ date: "Thur Sept 25th", description: "Lab 1: simple generative models, numpy+pytorch, autoencoders", material: "TBD" },
17+
{ date: "Wed Oct 1st", description: "Generative Adversarial Networks", material: "TBD" },
18+
{ date: "Thurs Oct 2nd", description: "Wasserstein Generative Adversarial Networks + Lab 2", material: "TBD" },
19+
{ date: "Wed Oct 8th", description: "Diffusion", material: `
20+
<a href="https://neurips.cc/virtual/2024/invited-talk/101133">Arnaud Doucet invited talk at NeurIPS 2024</a>
21+
`},
22+
{ date: "Thurs Oct 9th", description: "Introduction to sequence modelling", material: "TBD" }
1723
];
1824
---
1925

@@ -43,7 +49,9 @@ import { SITE_DESCRIPTION, SITE_TITLE } from '../consts';
4349
<td style="padding: 8px;">
4450
<div set:html={item.description}></div>
4551
</td>
46-
<td style="padding: 8px;">{item.material}</td>
52+
<td style="padding: 8px;">
53+
<div set:html={item.material}></div>
54+
</td>
4755
</tr>
4856
))}
4957
</tbody>

0 commit comments

Comments
 (0)