-
Notifications
You must be signed in to change notification settings - Fork 117
/
assignments.html
85 lines (64 loc) · 2.88 KB
/
assignments.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CS224n: Natural Language Processing with Deep Learning</title>
<!-- bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<!-- Google fonts -->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-60458624-1', 'auto');
ga('send', 'pageview');
</script>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="header">
<a href="http://nlp.stanford.edu/">
<img src="http://nlp.stanford.edu/sentiment/images/nlp-logo.gif" style="height:50px; float: left; margin-left: 20px;">
</a>
<a href="index.html">
<h1>CS224n: Natural Language Processing with Deep Learning</h1>
</a>
<div style="clear:both;"></div>
</div>
<div style="background-color:#8C1515; color:#FFF; padding:15px;">
<h1>Assignments</h1>
</div>
<div class="container sec">
<h2>Assignment Pages</h2>
<ul>
<li><a href="assignment1/index.html">Assignment #1</a></li>
<li><a href="assignment2/index.html">Assignment #2</a></li>
<li><a href="assignment3/index.html">Assignment #3</a></li>
<li><a href="assignment4/index.html">Assignment #4</a></li>
</ul>
</div>
<div class="sechighlight">
<div class="container sec">
<h2>When/Where to Hand in</h2>
<ul>
<li>The assignments are due at midnight. The due dates for all assignments are on the <a href="syllabus.html">syllabus</a> page.</li>
<li>You will hand in the assignments electronically through Box and <a href="https://www.gradescope.com/courses/5367">Gradescope</a>. For submission
instructions follow the steps listed on the appropriate assignment page.
For example, detailed assignment #1 instructions can be found <a href="assignment1/index.html#submit">here</a>.
<b>Do not email</b> us your assignments.</li>
</ul></div>
</div>
<div class="container sec">
See the <a href="grading.html">grading</a> page for late days, collaboration policy, etc.
</div>
<!-- jQuery and Boostrap -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</body>
</html>