Newer
Older
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
{
"cells": [
{
"cell_type": "markdown",
"source": [
"# Awesome Class - Assignment X\n",
"\n",
"## Formalities\n",
"**Submit in a group of 2-3 people until xx.xx.xxxx 23.59CET. The deadline is strict!**\n",
"\n",
"## Evaluation and Grading\n",
"**General advice for programming exercises at _Awesome Institution_**\n",
"\n",
"Evaluation of your submission is done semi-automatically.\n",
"Think of it as this notebook being executed once.\n",
"Afterwards, some test functions are appended to this file and executed respectively.\n",
"\n",
"Therefore:\n",
"- Submit valid _Python3_ code only!\n",
"- Use **external** libraries if and only if specified by task.\n",
" Using the standard library is fine unless you're told otherwise.\n",
"- Ensure your definitions (functions, classes, methods, variables) follow the specification.\n",
" The signature of a function/method/class usually can be inferred from task description, code skeletons and test cases.\n",
"- Ensure your code does not rely on the current notebook or system state!\n",
" - Use `Kernel --> Restart & Run All` to see if you are using any definitions, variables etc. that are not in scope anymore.\n",
" - Double check if your code relies on presence of files or directories other than those mentioned in given tasks.\n",
" - Tests run under Linux, hence don't use Windows style paths (`some\\path`, `C:\\another\\path`).\n",
" `pathlib` provides neat abstractions for that, use it!\n",
" Also, use paths only that are relative to and within your working directory (OK: `some/path`, `./some/path`; NOT OK: `/home/alice/python`, `../../python`).\n",
"- Keep your code [idempotent](https://en.wikipedia.org/wiki/Idempotence)!\n",
" Running your code or parts of it multiple times must not yield different results.\n",
" Minimize usage of global variables.\n",
"- Ensure your code/notebook terminates in reasonable time.\n",
" We enforce timeouts during notebook/test execution.\n",
" Exceeding those results in an error and potentially no points for that sub-task.\n",
"- Textual answers must always be backed by code and may not refer to results that are not part of your submission.\n",
"\n",
"**There's a story behind each of these points! Don't expect us to fix your code!**"
],
"metadata": {
"collapsed": false
}
},
{
"cell_type": "markdown",
"metadata": {
"pycharm": {
"name": "#%% md\n"
}
},
"source": [
"Credentials of all team members (you may add or remove items from the list)"
]
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"team_members = [\n",
" {\n",
" 'first_name': 'Alice',\n",
" 'last_name': 'Foo',\n",
" 'student_id': 12345\n",
" },\n",
" {\n",
" 'first_name': 'Bob',\n",
" 'last_name': 'Bar',\n",
" 'student_id': 54321\n",
" }\n",
"]"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"import sys\n",
"import time\n",
"\n",
"import matplotlib.pyplot as plt\n",
"import pandas as pd"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"SOME_CONSTANT = 42"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"Let's do some plotting..."
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"df = pd.DataFrame([[1, 1], [2, 4], [3, 9], [4, 16], [5, 25]])\n",
"df.plot()"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"... or render a table"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"from IPython.display import display\n",
"\n",
"display(df)"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"Now, read some data from the file system"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"with open('foo.txt', mode='rt') as f:\n",
" data = f.read()\n",
"\n",
"print(data[:len(data) // 2])\n",
"print(data[len(data) // 2:], file=sys.stderr)"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"... or modify an existing file"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"with open('bar.txt', mode='a') as f:\n",
" f.write('>> modification by notebook <<')"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"... or create a new file"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"with open('fnord.txt', mode='wt') as f:\n",
" f.write('let\\'s leave some artifacts in the system')\n"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"Explicit calls to `plt.show` will be re-directed to `auto_save_figure`, storing the plot in a file"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"for e in [2, 3]:\n",
" plt.plot(*zip(*((v, v ** e) for v in range(-10, 10))))\n",
" plt.show()"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"However, we can also save a figure explicitly!"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"plt.plot(*zip(*((v, v ** 5 + (v - 5) ** 3 - (3 * v) ** 2) for v in range(-20, 20))))\n",
"plt.savefig('plot.png')"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"metadata": {
"pycharm": {
"name": "#%% md\n"
}
},
"source": [
"Here are some more functions we can write tests for"
]
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"def square(x: float) -> float:\n",
" return x ** 2\n",
"\n",
"\n",
"def cube(x: float) -> float:\n",
" return x ** 3\n",
"\n",
"\n",
"abs_cube = cube\n",
"\n",
"\n",
"def fail():\n",
" raise ValueError('no chance, this function crashes so badly')\n",
"\n",
"\n",
"def sleep(x):\n",
" time.sleep(x)"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"Tests may define timeouts for cell and test execution.\n",
"Hence, the following code may rise a `TimeoutError`!"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"sleep(.1)"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"Importing _autograde_ may fail due to import policy, see `NotebookTest.set_import_filter`"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"import autograde\n",
"\n",
"print(autograde.__version__)"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"Importing _autograde_ is an issue as it could be used to monkey-patch the library, e.g.\n",
"\n",
"```Python\n",
"import autograde\n",
"\n",
"def mock(self, *_, **__):\n",
" return self.score, '🖕'\n",
"\n",
"autograde.notebook_test.UnitTest.__call__ = mock\n",
"```"
],
"metadata": {
"collapsed": false
}
},
{
"cell_type": "markdown",
"source": [
"Import filters also work at test time and for various ways of importing"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"def illegal_import():\n",
" exec('import autograde as ag')"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"Unlike normal Python scripts, notebook execution continues even if a cell crashes!"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"assert False, 'this cell will crash under any circumstances ...'"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "code",
"execution_count": null,
"outputs": [],
"source": [
"print('... but this cell is not affected :^)')"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"Tests may access contents of markdown comments.\n",
"This is useful when students are asked to elaborate on their solutions."
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
},
{
"cell_type": "markdown",
"source": [
"**Q1:** _How many roads must a man walk down before you call him a man?_"
],
"metadata": {
"collapsed": false
}
},
{
"cell_type": "markdown",
"source": [
"**A1:** The answer, my friend, is blowin' in the wind. The answer is blowin' in the wind."
],
"metadata": {
"collapsed": false
}
},
{
"cell_type": "markdown",
"source": [
"**Q2:** _What's the answer to life, universe and everything?_"
],
"metadata": {
"collapsed": false
}
},
{
"cell_type": "markdown",
"source": [
"**A2:** 42 (forty-two)"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%% md\n"
}
}
}
],
"metadata": {
"kernel_info": {
"name": "python3"
},
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
},
"nteract": {
"version": "0.12.3"
}
},
"nbformat": 4,
"nbformat_minor": 2
}