-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·136 lines (98 loc) · 4.36 KB
/
index.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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
---
layout: default
title: Home
desc: 'Website for 2022 Spring -UVA-CS Machine Learning: Machine learning Foundations and Deep Learning (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>(0308,0310)</b></font> no class, spring recess; <font color="#990000"><b>(0202)</b></font> Add Last day; <font color="#990000"><b>(0203)</b></font> Drop Last day; <font color="#990000"><b>(0503)</b></font> Last lesson day of Spring 2022 .
</li>
<br>
<li><p style="color:blue;">Disclaimer: it is quite hard to make important topics of machine learning fit on a one-semester schedule. We aim to make the course reasonably digestible in an introductory manner. We try to focus on a modularity view by introducing important variables to digest machine learning into chunks regarding data/ representation / loss-functions / optimizations / model characteristics. That said, our goals here are to highlight the most foundational design choices in machine learning about algorithm designs, workflows, what to learn and how to learn it, and to expose the trade-offs in those choices. We think this teaching style provides students with context concerning those choices and helps them build a much deeper understanding. </p>
</li>
</ul>
</div>
<hr>
<h1> Website for 2022 Spring -UVA-CS Machine Learning: Machine Learning Foundation, Deep Learning and Good Uses (Undergraduate Advanced) </h1>
<hr>
<h2> Course Schedule and Notes </h2>
<p><font color="#990000"><b>The lectures' 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>Qz</th>
<th>Title / Post</th>
<th>Lecture PDF</th>
<th>Focus</th>
<th>Video (Split2Modules)</th>
<th>Study Note</th>
</b>
</h3>
</tr>
{% assign counter = 0 %}
{% assign Qcounter = 0 %}
{% assign currentTag = 0 %}
{% assign sorted = site.contents %}
{% assign ddates = "|0120|0125|0127|0201|0203|0208|0210|0215|0217|0222|0224|0301|0303|0315|0317|0322|0324|0329|0331|0405|0407|0412|0414|0419|0421|0426|0428|0503 " | split: "|" %}
{% assign dweeks = "|W1|W2|W2|W3|W3|W4|W4|W5|W5|W6|W6|W7|W7|W8|W8|W9|W9|W10|W10|W11|W11|W12|W12|W13|W13|W14|W14 | W15 " | split: "|" %}
{% assign Qdates = "|Q0||Q1||Q2||Q3||Q4||Q5||Q6||Q7|| Q8||Q9||||Q10||Q11||Q12|" | 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>
{% if Qdates[counter] contains 'Q' %}
<td>{{ Qdates[counter] }}</td>
{% assign Qcounter=Qcounter | plus:1 %}
{% else %}
<td></td>
{% endif %}
{% 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"> Slides: {{ post.lecture }}</a></td>
{% else %}
<td></td>
{% endif %}
<td align="center"><font color="#990000"><b>{{ post.categories }} </b></font></td>
<td>{{ post.video }} </td>
<td>{{ post.notes }} </td>
</tr>
{% endif %}
{% endfor %}
</table>
<div style="position: fixed; bottom: 76px; right:10px; width: 88px; height: 36px; background-color: #FFCF79;">
<a style="position: fixed; bottom:80px; right:10px;" href="#topPage" title="Back to Top">BackTop</a>
</div>