Skip to content

Commit cde7e46

Browse files
committedOct 20, 2022
Updating 2022 dates and small Lisa update
1 parent f99c552 commit cde7e46

File tree

2 files changed

+27
-13
lines changed

2 files changed

+27
-13
lines changed
 

‎docs/index.rst

+10-11
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Welcome to the UvA Deep Learning Tutorials!
77
===========================================
88

99
| *Course website*: https://uvadlc.github.io/
10-
| *Course edition*: DL1 - Fall 2021, DL2 - Spring 2022, Being kept up to date
10+
| *Course edition*: DL1 - Fall 2022, DL2 - Spring 2022, Being kept up to date
1111
| *Repository*: https://github.com/phlippe/uvadlc_notebooks
1212
| *Recordings*: `YouTube Playlist <https://www.youtube.com/playlist?list=PLdlPlO1QhMiAkedeu0aJixfkknLRxk1nA>`_
1313
| *Author*: Phillip Lippe
@@ -31,26 +31,25 @@ Further, the content presented will be relevant for the graded assignment and ex
3131
The tutorials have been integrated as official tutorials of PyTorch Lightning.
3232
Thus, you can also view them in `their documentation <https://pytorch-lightning.readthedocs.io/en/latest/>`_.
3333

34-
Schedule (Deep Learning 1)
35-
--------------------------
34+
Schedule (Deep Learning 1, edition 2022)
35+
----------------------------------------
3636

3737
+------------------------------------------+---------------------------------------------------+
3838
| **Date** | **Notebook** |
3939
+------------------------------------------+---------------------------------------------------+
40-
| Thursday, 4. November 2021, 13.00-15.00 | Tutorial 2: Introduction to PyTorch |
41-
| | Guide 1: Working with the Lisa cluster |
40+
| Tuesday, 1. November 2022, 17.00-18.00 | Tutorial 2: Introduction to PyTorch |
4241
+------------------------------------------+---------------------------------------------------+
43-
| Thursday, 11. November 2021, 13.00-14.00 | Tutorial 3: Activation functions |
42+
| Tuesday, 8. November 2022, 17.00-18.00 | Tutorial 3: Activation functions |
4443
+------------------------------------------+---------------------------------------------------+
45-
| Thursday, 18. November 2021, 13.00-14.00 | Tutorial 4: Optimization and Initialization |
44+
| Tuesday, 15. November 2022, 17.00-18.00 | Tutorial 4: Optimization and Initialization |
4645
+------------------------------------------+---------------------------------------------------+
47-
| Thursday, 25. November 2021, 13.00-14.00 | Tutorial 5: Inception, ResNet and DenseNet |
46+
| Tuesday, 22. November 2022, 17.00-18.00 | Tutorial 5: Inception, ResNet and DenseNet |
4847
+------------------------------------------+---------------------------------------------------+
49-
| Thursday, 2. December 2021, 13.00-14.00 | Tutorial 7: Graph Neural Networks |
48+
| Tuesday, 29. November 2022, 17.00-18.00 | Tutorial 6: Transformers and Multi-Head Attention |
5049
+------------------------------------------+---------------------------------------------------+
51-
| Thursday, 9. December 2021, 13.00-14.00 | Tutorial 6: Transformers and Multi-Head Attention |
50+
| Tuesday, 6. December 2022, 17.00-18.00 | Tutorial 7: Graph Neural Networks |
5251
+------------------------------------------+---------------------------------------------------+
53-
| Thursday, 16. December 2021, 13.00-14.00 | Tutorial 9: Deep Autoencoders |
52+
| Tuesday, 13. December 2022, 17.00-18.00 | TBA |
5453
+------------------------------------------+---------------------------------------------------+
5554

5655
How to run the notebooks

‎docs/tutorial_notebooks/tutorial1/Lisa_Cluster.ipynb

+17-2
Original file line numberDiff line numberDiff line change
@@ -376,11 +376,26 @@
376376
"--seed 45 --learning_rate 1e-2\n",
377377
"```"
378378
]
379+
},
380+
{
381+
"cell_type": "markdown",
382+
"metadata": {},
383+
"source": [
384+
"### Additional partitions\n",
385+
"\n",
386+
"During the Master's program at the University of Amsterdam, you will likely gain accounts for Lisa during other courses as well, as well as during your Master thesis (if performed at university). In this case, you can get access to partitions besides `gpu_shared_course` allowing you to run more computationally heavy experiments. A full list of partitions can be found [here](https://servicedesk.surf.nl/wiki/display/WIKI/Lisa+usage+and+accounting). Besides the nodes with the GeForce 1080Ti GPUs, the most commonly used partition for DL experiments is called `gpu_titanrtx` which has nodes with the following config: \n",
387+
"\n",
388+
"| Processor | CPU Cores | RAM Memory | GPUs |\n",
389+
"|:---------------------:|:-----------:|:------------:|:-------------------------------:|\n",
390+
"| Gold 5118 (2.3GHz) | 24 | 192GB | 4x Titan RTX, 24 GB GDDR6 |\n",
391+
"\n",
392+
"The Titan RTX are faster and provide more GPU memory than the 1080Ti's. However, these nodes cost more than twice as many credits (91.2 vs 42.1 for full node per hour, see [accounting](https://servicedesk.surf.nl/wiki/display/WIKI/Lisa+usage+and+accounting)), so use them only if needed. Furthermore, in many cases, you do not need a full node and might only need a single GPU. Similar to the course partition, there exist `gpu_titanrtx_shared` and `gpu_shared` which allow you access to partial node uses, like 1 or 2 GPUs. "
393+
]
379394
}
380395
],
381396
"metadata": {
382397
"kernelspec": {
383-
"display_name": "Python 3",
398+
"display_name": "Python 3 (ipykernel)",
384399
"language": "python",
385400
"name": "python3"
386401
},
@@ -394,7 +409,7 @@
394409
"name": "python",
395410
"nbconvert_exporter": "python",
396411
"pygments_lexer": "ipython3",
397-
"version": "3.7.9"
412+
"version": "3.8.2"
398413
}
399414
},
400415
"nbformat": 4,

0 commit comments

Comments
 (0)
Please sign in to comment.