-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomeworks.html
102 lines (69 loc) · 2.13 KB
/
homeworks.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
<!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>Homeworks</h3>
<table>
<thead>
<tr>
<th>Date assigned</th>
<th>Due</th>
<th>Homework</th>
</tr>
</thead>
<tbody>
<tr>
<td>1/26/23</td>
<td>2/2/23 (before class)</td>
<td><a href="homeworks/hw_1_linear_classifier.ipynb">Homework #1: Sentiment analysis with logistic regression.</a></td>
</tr>
<tr>
<tr>
<td>2/2/23</td>
<td>2/9/23 (before class)</td>
<td><a href="homeworks/homework2_word2vec.ipynb">Homework #2: Word2vec.</a></td>
</tr>
<tr>
<td>2/9/23</td>
<td>2/13/23 (before class)</td>
<td><a href="https://forms.gle/DSoju13ZH1gQCzBU7">Python code style quiz</a></td>
</tr>
<tr>
<td>2/9/23</td>
<td>2/16/23 (before class)</td>
<td><a href="hw3_neural_networks_numpy.zip">Homework #3: Neural networks from scratch </td>
</tr>
<tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>