-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.html
172 lines (143 loc) · 4.09 KB
/
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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>COMP 5300: Deep Learning for NLP -- Spring 2023 @ UMass Lowell</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<header class="row">
<h3>COMP 5300: Deep Learning for NLP -- Spring 2023<br/><br/>
<img src="images/logo.png" width="300" height="200">
</h3>
</header>
<div class="row">
<div class="two columns">
<p>
<a class="button-half menu" href="index.html">Home</a>
<a class="button-half menu" href="schedule.html">Schedule</a>
<a class="button-half menu" href="homeworks.html">Homeworks</a>
<br/><br/>
</p>
</div>
<div class="ten columns">
<h3>Class schedule</h3>
<p>
This schedule is tentative and subject to change. Please check back here often.
</p>
<table>
<thead>
<tr>
<th>Date</th>
<th>Lecture topic</th>
<th>Slides / Handouts</th>
<th>Homework</th>
</tr>
</thead>
<tbody>
<tr>
<td>1/19</td>
<td>Week 1: Intro to NLP</td>
<td><a href="lectures/lecture1.pdf">Lecture 1</a></td>
<td></td>
</tr>
<tr>
<td>1/26</td>
<td>Week 2: Lexical embeddings</td>
<td><a href="lectures/lecture2.pdf">Lecture 2</a></td>
<td><a href="homeworks/hw_1_linear_classifier.ipynb">Homework #1</a></td>
</tr>
<tr>
<td>2/2</td>
<td>Week 3: Neural networks 101</td>
<td><a href="https://docs.google.com/presentation/d/1yGy4j22QhUh_H6_YhuNdlILxbqSeNqpW8YDnNDQg-N4/edit#slide=id.p">Lecture 3</td>
<td><a href="homeworks/homework2_word2vec.ipynb">Homework #2: Word2vec.</a></td>
</tr>
<tr>
<td>2/9</td>
<td>Week 4: Neural networks 201</td>
<td><a href="https://docs.google.com/presentation/d/1udp4keW7nMRbk1qxSNN7iZOTHcuogT6i0RAFr6Lw1u0">Lecture 4</a></td>
<td><a href="https://forms.gle/DSoju13ZH1gQCzBU7">Python code style quiz</a>, due Mon Feb 13 before class<br/>
<a href="homeworks/hw3_neural_networks_numpy.zip">Homework #3</a>, due Thu Feb 16 before class</td>
</tr>
<tr>
<td>2/16</td>
<td>Week 5: Neural networks 301</br>(activation functions and initializations)</td>
<td><a href="https://docs.google.com/presentation/d/1yEZEEXhq6wkJ_I27dQl-zlajgXOWs9DVAiptUx1BFTo/edit?usp=sharing">Lecture 5</a><br/>
<a href="https://colab.research.google.com/drive/1x_p9s8VAU1WOfvrLcEnBJ39xQFRY_WEi?usp=sharing">Notebook</a></td>
<td></td>
</tr>
<tr>
<td>2/23</td>
<td>Week 6: Attention mechanism</td>
<td></td>
<td></td>
</tr>
<tr>
<td>3/2</td>
<td>Week 7: Sequence-to-sequence models</td>
<td></td>
<td></td>
</tr>
<tr>
<td>3/9</td>
<td>No class -- Spring recess</td>
<td></td>
<td></td>
</tr>
<tr>
<td>3/16</td>
<td>Week 8: Transfer learning in NLP</td>
<td></td>
<td></td>
</tr>
<tr>
<td>3/23</td>
<td>Week 9: Pre-training variants</td>
<td></td>
<td></td>
</tr>
<tr>
<td>3/30</td>
<td>Week 10: Effects of scale in NLP</td>
<td></td>
<td></td>
</tr>
<tr>
<td>4/6</td>
<td>Week 11</td>
<td></td>
<td></td>
</tr>
<tr>
<td>4/13</td>
<td>Week 12</td>
<td></td>
<td></td>
</tr>
<tr>
<td>4/20</td>
<td>Week 13</td>
<td></td>
<td></td>
</tr>
<tr>
<td>4/27</td>
<td>Week 14</td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>