forked from dellaert/19F-4476
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule.html
33 lines (33 loc) · 1004 Bytes
/
schedule.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
---
layout: vertical
title: Schedule
---
<p>Note that while the schedule follows the organization in Szeliski's book, <b>deep learning</b> topics will be integrated throughout the course, having profoundly influenced the state of the art across all of computer vision.</p>
<!--table border="1"-->
<table>
<thead>
<tr>
<td><strong>Date</strong></td>
<td><strong>Topic</strong></td>
<td><strong>Slides</strong></td>
<td><strong>Reading</strong></td>
<td><strong>Projects</strong></td>
</tr>
</thead>
<tbody>
{% for item in site.data.Schedule %}
<tr>
<td>{{item.Day}}, {{item.Month}} {{item.Date}}</td>
<td>{{item.Szeliski}}</td>
<td>
{% unless item.Slides == "-" %}
<a href="Slides/{{item.Slides}}.pptx">pptx</a>,
<a href="Slides/{{item.Slides}}.pdf">pdf</a>
{% endunless %}
</td>
<td>{{item.Reading}}</td>
<td>{{item.Projects}}</td>
</tr>
{% endfor %}
</tbody>
</table>