-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·122 lines (85 loc) · 3.08 KB
/
Copy pathindex.html
File metadata and controls
executable file
·122 lines (85 loc) · 3.08 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
---
layout: default
title: Home
desc: 'Website for 2025 Spring -UVA-CS 2025sp-GenAI-Overview (Graduate and Undergraduate Advanced)'
---
<p><a name="topPage"></a></p>
<div>
<ul>
<li>Feel free to email me, when you find my typos or have comments. The covered materials are by no means an exhaustive list of machine learning, but are contents that we have taught or plan to teach in my machine learning introductory course.
</li>
<li>
Please pay attention to special dates: <font color="#990000"><b>(0120,0310,0312)</b></font> no class, holiday or spring recess; and <font color="#990000"><b>(0428)</b></font> Last lesson day of Spring 2025 .
</li>
</ul>
</div>
<hr>
<h1> Website for 2025 Spring-UVA-CS GenAI Foundation and Application Overviews (Graduate and Undergraduate Advanced) </h1>
<hr>
<h2> Course Schedule and Notes </h2>
<p><font color="#990000"><b>The schedule below is tentative and is continually subject to change; We will move at whatever pace we find comfortable. </b></font> </p>
<div class="posts">
<table id="datatab3" summary="Table of Lectures" border="1">
<tr>
<h3><b>
<th>Date</th>
<th>Week</th>
<th>Title / Information </th>
<th>SlideDeck</th>
<th>Topic</th>
<th>Lead Team</th>
</b>
</h3>
</tr>
{% assign counter = 0 %}
{% assign Qcounter = 0 %}
{% assign currentTag = 0 %}
{% assign sorted = site.contents %}
{% assign ddates = "|0113|0115|0120|0122|0127|0129|0203|0205|0210|0212|0217|0219|0224|0226|0303|0305|0310|0312|0317|0319|0324|0326|0331|0402|0407|0409|0414|0416|0421|0423|0428 " | split: "|" %}
{% assign dweeks = "|W1|W1|W2|W2|W3|W3|W4|W4|W5|W5|W6|W6|W7|W7|W8|W8|WB|WB|W9|W9|W10|W10|W11|W11|W12|W12|W13|W13|W14|W14|W15 " | split: "|" %}
{% for post in sorted %}
{% if currentTag == 0 %}
{% unless post.lectureVersion contains 'current' %}
<tr><td align="center" bgcolor="#fff48f" colspan="9">
<font color="#990000"><b>WE ARE HERE</b></font></td>
</tr>
{% assign currentTag=currentTag | plus:1 %}
{% endunless %}
{% endif %}
{% if post.title contains "Section" %}
<tr><td align="center" bgcolor="#bafdfb" colspan="9">
<font color="#990000"><h3><b>{{ post.title }}</b>
</h3></font></td>
</tr>
{% else %}
{% if post.extra %}
<tr bgcolor="#cccdc2" >
<td >Extra </td>
<td >Extra </td>
<td></td>
{% elsif post.platform %}
<tr bgcolor="#81de76" >
<td >Platform </td>
<td >Platform </td>
<td></td>
{% else %}
{% assign counter=counter | plus:1 %}
<tr >
<td>{{ ddates[counter] }} </td>
<td>{{ dweeks[counter] }}</td>
{% endif %}
<td><a href="{{ site.baseurl }}{{ post.url }}" >{{ post.title }}</a></td>
{% if post.lecture %}
<td><a href="{{ site.baseurl }}/Lectures/{{ post.lecture }}.pdf" target="_blank"> {{ post.lecture }}</a></td>
{% else %}
<td></td>
{% endif %}
<td>{{ post.video }} </td>
<td>{{ post.notes }} </td>
</tr>
{% endif %}
{% endfor %}
</table>
<div style="position: fixed; bottom: 76px; left:10px; width: 88px; height: 36px; background-color: #FFCF79;">
<a style="position: fixed; bottom:80px; left:10px;" href="#topPage" title="Back to Top">BackTop</a>
</div>