Skip to content

Commit f9442af

Browse files
update readme and add jupyter notebooks (#5)
* update readme and add all jupyter notebooks * Review dl materials, include in toc --------- Co-authored-by: mxsunc <michi.unger@gmx.de>
1 parent ad982c6 commit f9442af

10 files changed

Lines changed: 6413 additions & 81 deletions

_toc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ parts:
3737
- file: day2.2_dl-basics/readme.md
3838
sections:
3939
- file: day2.2_dl-basics/01_neural_networks.ipynb
40+
- file: day2.2_dl-basics/02_Convolutional_Neural_Networks.ipynb
41+
- file: day2.2_dl-basics/03_Auto_Encoders_exercise.ipynb
42+
- file: day2.2_dl-basics/03_Auto_Encoders_solutions.ipynb
43+
- file: day2.2_dl-basics/04_LSTMs_exercise.ipynb
44+
- file: day2.2_dl-basics/04_LSTMs_solutions.ipynb
45+
- file: day2.2_dl-basics/05_CNNs_exercise.ipynb
46+
- file: day2.2_dl-basics/05_CNNs_solutions.ipynb
4047

4148
- file: day2.3_explainability/readme.md
4249
sections:

day2.2_dl-basics/01_neural_networks.ipynb

Lines changed: 198 additions & 77 deletions
Large diffs are not rendered by default.

day2.2_dl-basics/02_Convolutional_Neural_Networks.ipynb

Lines changed: 1364 additions & 0 deletions
Large diffs are not rendered by default.

day2.2_dl-basics/03_Auto_Encoders_exercise.ipynb

Lines changed: 431 additions & 0 deletions
Large diffs are not rendered by default.

day2.2_dl-basics/03_Auto_Encoders_solutions.ipynb

Lines changed: 1739 additions & 0 deletions
Large diffs are not rendered by default.

day2.2_dl-basics/04_LSTMs_exercise.ipynb

Lines changed: 612 additions & 0 deletions
Large diffs are not rendered by default.

day2.2_dl-basics/04_LSTMs_solutions.ipynb

Lines changed: 746 additions & 0 deletions
Large diffs are not rendered by default.

day2.2_dl-basics/05_CNNs_exercise.ipynb

Lines changed: 414 additions & 0 deletions
Large diffs are not rendered by default.

day2.2_dl-basics/05_CNNs_solutions.ipynb

Lines changed: 871 additions & 0 deletions
Large diffs are not rendered by default.

day2.2_dl-basics/readme.md

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,34 @@
11
# Deep Learning: Introduction and Basics
22

3-
* Theory and Practice
4-
* Introducing algorithms and models
5-
* Handling of Python libraries scikit-learn and pytorch
3+
Today we will learn more about how deep learning works and what model types there are used for medical problems.
64

7-
Slides used for this session can be downloaded as PDF [here](deep_learning_introduction.pdf).
5+
What we will do today:
6+
* Theory and Practice of Deep Learning
7+
* Introducing different model architectures
8+
* Hands-on practice with in different exercises
9+
10+
Slides used for this session can be downloaded as PDF [here](deep_learning_introduction.pdf).
11+
12+
We will use the Jupyter Notebooks today not over our terminal but in Google Colab.
13+
Google Colab can be used as a coding environment and provides us with computational resouces like GPUs.
14+
Please login to your Google account.
15+
16+
**2 IMPORTANT HINTS:**
17+
1. Please open the notebooks over the links down here. This will first give you a page with a lot of text.
18+
In the upper right corner there should be a button with "Open with Google Collaboratory". Please click on this.
19+
* [01 Neural Networks](https://drive.google.com/file/d/121NTe-6RvQ8GmFxXgiY8ySe35BDWX8R2/view?usp=sharing)
20+
* [02 Convolutional Neural Networks](https://drive.google.com/file/d/1T1pnVCjIYlyFpgLbQTIN7BGitmcmK4wN/view?usp=sharing)
21+
* [03 Autoencoders Exercise](https://colab.research.google.com/drive/1r5-UniBHGVb_nUi2aPn7sIf7LGn7bucw?usp=sharing)
22+
* [03 Autoencoders Solution](https://colab.research.google.com/drive/1MrSwVSsGVpz5tbnYzv4suWuvDRgLiKO4?usp=sharing)
23+
* [04 Long-Short Term Memory Models Exercise](https://colab.research.google.com/drive/1q0n5NxUrbh072vTC4pyBym-yp0KROLy4?usp=sharing)
24+
* [04 Long-Short Term Memory Models Solutions](https://colab.research.google.com/drive/1z_G9J6AL7rz7X4f6coGeLymBq_5zq5bH?usp=sharing)
25+
* [05 CNNs Exercise](https://colab.research.google.com/drive/15B7AZRuuqrjT4b6VPipA9mi626V7EXAv?usp=sharing)
26+
* [05 CNNs Solutions](https://colab.research.google.com/drive/1KgqY1oIQu6a3NpDPZMh2TIaOeMUnXvI9?usp=sharing)
27+
28+
29+
2. For notebook 01, 02 and the exercise notebooks, please save a copy of them in your Google Drive and work on these copies not in the original notebooks.
30+
For this you open the notebook click on File -> Save a copy in Drive -> wait a few seconds until the copy opens automatically.
31+
32+
Then you can work on the exercises and have fun !
33+
34+
We added the notebooks also as files in Git for your to have a look but not to execute them on your laptop.

0 commit comments

Comments
 (0)