-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathassignments.html
110 lines (86 loc) · 3.58 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
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
<!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>Stanford University CS224d: Deep Learning for Natural Language Processing</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>CS224d: Deep Learning for Natural Language Processing</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><li><a href="assignment3/index.html">Assignment #3</a></li>-->
</ul>
</div>
<div class="sechighlight">
<div class="container sec">
<h2>When to Hand in</h2>
The assignments are due at midnight. The due dates for all assignments are on the <a href="syllabus.html">syllabus</a> page.
<h4>Late Policy:</h4>
<ul>
<li>You can use 7 late days, with up to 3 late days per assignment.</li>
<li>Once you have used all 7 late days, penalty is 25% for each additional late day</li>
</ul>
</div>
</div>
<div class="container sec">
<h2>Where to Hand in</h2>
You will hand in the assignments electronically through <a
href="https://stanford.box.com/s/lqr9zc3t05b44uh98ayvwmx9y1ywb76g">Box</a> and <a
href="https://www.gradescope.com/courses/2962">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>.
<br><b>Do not email</b> us your assignments.
</div>
<div class="sechighlight">
<div class="container sec">
<h2>Collaboration Policy</h2>
<ul>
<li>
Study groups are allowed but we expect students to understand and complete their own assignments and to hand in one assignment per student.
</li>
<li>
If you worked in a group, please put the names of your study group on your assignment on top.
</li>
<li>
Finally, we expect students to not look at implementations online. Just like all other classes at Stanford, we take the student Honor Code seriously.
</li>
</ul>
</div>
</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>