Skip to content

Commit 224a66e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9c941f6 commit 224a66e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+631
-630
lines changed

.notebooks/course_UvA-DL/01-introduction-to-pytorch.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6097,4 +6097,4 @@
60976097
},
60986098
"nbformat": 4,
60996099
"nbformat_minor": 5
6100-
}
6100+
}
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
1-
title: 'Tutorial 1: Introduction to PyTorch'
1+
title: "Tutorial 1: Introduction to PyTorch"
22
author: Phillip Lippe
33
created: 2021-08-27
44
updated: 2023-03-14
55
license: CC BY-SA
6-
description: 'This tutorial will give a short introduction to PyTorch basics, and
6+
description: "This tutorial will give a short introduction to PyTorch basics, and
77
get you setup for writing your own neural networks.
88
99
This notebook is part of a lecture series on Deep Learning at the University of
1010
Amsterdam.
1111
1212
The full list of tutorials can be found at https://uvadlc-notebooks.rtfd.io.
1313
14-
'
14+
"
1515
requirements:
16-
- matplotlib
17-
- lightning>=2.0.0
16+
- matplotlib
17+
- lightning>=2.0.0
1818
accelerator:
19-
- CPU
20-
- GPU
19+
- CPU
20+
- GPU
2121
environment:
22-
- pytorch-lightning==2.0.9.post0
23-
- torchmetrics==1.2.0
24-
- matplotlib==3.8.0
25-
- setuptools==68.2.2
26-
- torch==2.0.1+cu118
27-
- ipython==8.16.1
28-
- lightning==2.0.9.post0
29-
- urllib3==2.0.6
30-
published: '2023-10-11T15:26:10.460926'
22+
- pytorch-lightning==2.0.9.post0
23+
- torchmetrics==1.2.0
24+
- matplotlib==3.8.0
25+
- setuptools==68.2.2
26+
- torch==2.0.1+cu118
27+
- ipython==8.16.1
28+
- lightning==2.0.9.post0
29+
- urllib3==2.0.6
30+
published: "2023-10-11T15:26:10.460926"

.notebooks/course_UvA-DL/02-activation-functions.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -61945,4 +61945,4 @@
6194561945
},
6194661946
"nbformat": 4,
6194761947
"nbformat_minor": 5
61948-
}
61948+
}
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
title: 'Tutorial 2: Activation Functions'
1+
title: "Tutorial 2: Activation Functions"
22
author: Phillip Lippe
33
created: 2021-08-27
44
updated: 2023-03-14
55
license: CC BY-SA
6-
description: 'In this tutorial, we will take a closer look at (popular) activation
6+
description: "In this tutorial, we will take a closer look at (popular) activation
77
functions and investigate their effect on optimization properties in neural networks.
88
99
Activation functions are a crucial part of deep learning models as they add the
@@ -13,31 +13,31 @@ description: 'In this tutorial, we will take a closer look at (popular) activati
1313
more beneficial than others.
1414
1515
The goal of this tutorial is to show the importance of choosing a good activation
16-
function (and how to do so), and what problems might occur if we don''t.
16+
function (and how to do so), and what problems might occur if we don't.
1717
1818
This notebook is part of a lecture series on Deep Learning at the University of
1919
Amsterdam.
2020
2121
The full list of tutorials can be found at https://uvadlc-notebooks.rtfd.io.
2222
23-
'
23+
"
2424
requirements:
25-
- torchvision
26-
- matplotlib
27-
- seaborn
28-
- lightning>=2.0.0
25+
- torchvision
26+
- matplotlib
27+
- seaborn
28+
- lightning>=2.0.0
2929
accelerator:
30-
- CPU
31-
- GPU
30+
- CPU
31+
- GPU
3232
environment:
33-
- pytorch-lightning==2.0.9.post0
34-
- torchvision==0.15.2
35-
- setuptools==68.2.2
36-
- matplotlib==3.8.0
37-
- torchmetrics==1.2.0
38-
- lightning==2.0.9.post0
39-
- urllib3==2.0.6
40-
- seaborn==0.13.0
41-
- torch==2.0.1
42-
- ipython==8.16.1
43-
published: '2023-10-11T15:36:52.722595'
33+
- pytorch-lightning==2.0.9.post0
34+
- torchvision==0.15.2
35+
- setuptools==68.2.2
36+
- matplotlib==3.8.0
37+
- torchmetrics==1.2.0
38+
- lightning==2.0.9.post0
39+
- urllib3==2.0.6
40+
- seaborn==0.13.0
41+
- torch==2.0.1
42+
- ipython==8.16.1
43+
published: "2023-10-11T15:36:52.722595"

.notebooks/course_UvA-DL/03-initialization-and-optimization.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -110702,4 +110702,4 @@
110702110702
},
110703110703
"nbformat": 4,
110704110704
"nbformat_minor": 5
110705-
}
110705+
}
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
title: 'Tutorial 3: Initialization and Optimization'
1+
title: "Tutorial 3: Initialization and Optimization"
22
author: Phillip Lippe
33
created: 2021-08-27
44
updated: 2023-03-14
55
license: CC BY-SA
66
tags:
7-
- Image
8-
- Initialization
9-
- Optimizers
10-
description: 'In this tutorial, we will review techniques for optimization and initialization
7+
- Image
8+
- Initialization
9+
- Optimizers
10+
description: "In this tutorial, we will review techniques for optimization and initialization
1111
of neural networks.
1212
1313
When increasing the depth of neural networks, there are various challenges we face.
@@ -23,24 +23,24 @@ description: 'In this tutorial, we will review techniques for optimization and i
2323
2424
The full list of tutorials can be found at https://uvadlc-notebooks.rtfd.io.
2525
26-
'
26+
"
2727
requirements:
28-
- torchvision
29-
- matplotlib
30-
- seaborn
31-
- lightning>=2.0.0
28+
- torchvision
29+
- matplotlib
30+
- seaborn
31+
- lightning>=2.0.0
3232
accelerator:
33-
- CPU
34-
- GPU
33+
- CPU
34+
- GPU
3535
environment:
36-
- torchvision==0.15.2
37-
- setuptools==68.2.2
38-
- seaborn==0.13.0
39-
- ipython==8.16.1
40-
- matplotlib==3.8.0
41-
- pytorch-lightning==2.0.9.post0
42-
- urllib3==2.0.6
43-
- lightning==2.0.9.post0
44-
- torchmetrics==1.2.0
45-
- torch==2.0.1
46-
published: '2023-10-11T15:49:26.708230'
36+
- torchvision==0.15.2
37+
- setuptools==68.2.2
38+
- seaborn==0.13.0
39+
- ipython==8.16.1
40+
- matplotlib==3.8.0
41+
- pytorch-lightning==2.0.9.post0
42+
- urllib3==2.0.6
43+
- lightning==2.0.9.post0
44+
- torchmetrics==1.2.0
45+
- torch==2.0.1
46+
published: "2023-10-11T15:49:26.708230"

.notebooks/course_UvA-DL/04-inception-resnet-densenet.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7142,4 +7142,4 @@
71427142
},
71437143
"nbformat": 4,
71447144
"nbformat_minor": 5
7145-
}
7145+
}
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
title: 'Tutorial 4: Inception, ResNet and DenseNet'
1+
title: "Tutorial 4: Inception, ResNet and DenseNet"
22
author: Phillip Lippe
33
created: 2021-08-27
44
updated: 2023-03-14
55
license: CC BY-SA
66
tags:
7-
- Image
8-
description: 'In this tutorial, we will implement and discuss variants of modern CNN
7+
- Image
8+
description: "In this tutorial, we will implement and discuss variants of modern CNN
99
architectures.
1010
1111
There have been many different architectures been proposed over the past few years.
@@ -26,27 +26,27 @@ description: 'In this tutorial, we will implement and discuss variants of modern
2626
2727
The full list of tutorials can be found at https://uvadlc-notebooks.rtfd.io.
2828
29-
'
29+
"
3030
requirements:
31-
- torchvision
32-
- matplotlib
33-
- seaborn
34-
- tabulate
35-
- lightning>=2.0.0
36-
- tensorboard
31+
- torchvision
32+
- matplotlib
33+
- seaborn
34+
- tabulate
35+
- lightning>=2.0.0
36+
- tensorboard
3737
accelerator:
38-
- GPU
38+
- GPU
3939
environment:
40-
- setuptools==68.2.2
41-
- torch==2.0.1
42-
- seaborn==0.13.0
43-
- tabulate==0.9.0
44-
- matplotlib==3.8.0
45-
- torchvision==0.15.2
46-
- tensorboard==2.14.1
47-
- urllib3==2.0.6
48-
- torchmetrics==1.2.0
49-
- lightning==2.0.9.post0
50-
- pytorch-lightning==2.0.9.post0
51-
- ipython==8.16.1
52-
published: '2023-10-11T15:56:33.957662'
40+
- setuptools==68.2.2
41+
- torch==2.0.1
42+
- seaborn==0.13.0
43+
- tabulate==0.9.0
44+
- matplotlib==3.8.0
45+
- torchvision==0.15.2
46+
- tensorboard==2.14.1
47+
- urllib3==2.0.6
48+
- torchmetrics==1.2.0
49+
- lightning==2.0.9.post0
50+
- pytorch-lightning==2.0.9.post0
51+
- ipython==8.16.1
52+
published: "2023-10-11T15:56:33.957662"

.notebooks/course_UvA-DL/05-transformers-and-MH-attention.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -25203,4 +25203,4 @@
2520325203
},
2520425204
"nbformat": 4,
2520525205
"nbformat_minor": 5
25206-
}
25206+
}
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
title: 'Tutorial 5: Transformers and Multi-Head Attention'
1+
title: "Tutorial 5: Transformers and Multi-Head Attention"
22
author: Phillip Lippe
33
created: 2021-06-30
44
updated: 2023-03-14
55
license: CC BY-SA
66
build: 0
77
tags:
8-
- Text
9-
description: 'In this tutorial, we will discuss one of the most impactful architectures
8+
- Text
9+
description: "In this tutorial, we will discuss one of the most impactful architectures
1010
of the last 2 years: the Transformer model.
1111
1212
Since the paper Attention Is All You Need by Vaswani et al. had been published in
@@ -29,23 +29,23 @@ description: 'In this tutorial, we will discuss one of the most impactful archit
2929
3030
The full list of tutorials can be found at https://uvadlc-notebooks.rtfd.io.
3131
32-
'
32+
"
3333
requirements:
34-
- torchvision
35-
- matplotlib
36-
- seaborn
37-
- lightning>=2.0.0
34+
- torchvision
35+
- matplotlib
36+
- seaborn
37+
- lightning>=2.0.0
3838
accelerator:
39-
- GPU
39+
- GPU
4040
environment:
41-
- lightning==2.0.9.post0
42-
- torchmetrics==1.2.0
43-
- seaborn==0.13.0
44-
- torch==2.0.1
45-
- urllib3==2.0.6
46-
- matplotlib==3.8.0
47-
- pytorch-lightning==2.0.9.post0
48-
- torchvision==0.15.2
49-
- ipython==8.16.1
50-
- setuptools==68.2.2
51-
published: '2023-10-11T16:01:53.227908'
41+
- lightning==2.0.9.post0
42+
- torchmetrics==1.2.0
43+
- seaborn==0.13.0
44+
- torch==2.0.1
45+
- urllib3==2.0.6
46+
- matplotlib==3.8.0
47+
- pytorch-lightning==2.0.9.post0
48+
- torchvision==0.15.2
49+
- ipython==8.16.1
50+
- setuptools==68.2.2
51+
published: "2023-10-11T16:01:53.227908"

.notebooks/course_UvA-DL/06-graph-neural-networks.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2699,4 +2699,4 @@
26992699
},
27002700
"nbformat": 4,
27012701
"nbformat_minor": 5
2702-
}
2702+
}

0 commit comments

Comments
 (0)