Skip to content

Commit 51dc9d4

Browse files
author
Sungjoon
authored
Update README.md
1 parent 3f51d7c commit 51dc9d4

File tree

1 file changed

+44
-2
lines changed

1 file changed

+44
-2
lines changed

README.md

Lines changed: 44 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
11
# Deep learning tutorials
2-
32
Deep learning tutorials (2nd ed.)
43

5-
Have fun!
4+
## Week1
5+
1. [Deep learning intro.](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week1-1b%20Deep%20learning%20intro.pptx)
6+
2. [Python basics](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week1-1c%20Python%20basic%20(basic_python).pptx)
7+
3. [Let's play with images & MNIST](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week1-1d%20MNIST%20(basic_mnist)%20and%20image%20processing%20(basic_imgprocess).pptx)
8+
4. [Terminologies](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week1-2a%20Terminologies.pptx)
9+
10+
## Week2 - Do you know deep learning?
11+
1. [CNN and AlexNet](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week1-2b%20CNN%20and%20AlexNet.pptx)
12+
2. [TensorFlow basics](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week1-2c%20TensorFlow%20basic%20(basic_tensorflow).pptx)
13+
3. [Logistic regression](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week1-2d%20Logistic%20regression%20(logistic_regression_mnist).pptx)
14+
4. [GoogLeNet](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week2-1b%20GoogLeNet.pptx)
15+
5. [AlphaGo: MCTS+CNN](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week2-1c%20AlphaGo.pptx)
16+
6. [Let's implement MLP!](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week2-1d%20Multi-layer%20perceptron%20(mlp_mnist_simple).pptx)
17+
7. [Let's play with you OWN DATASET](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week2-1e%20Generate%20your%20own%20dataset%20(basic_gendataset).pptx)
18+
8. [Regularization methods](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week2-1f%20Regulaziation.pptx)
19+
9. [Optimization methods](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week2-2a%20Optimizaiton%20methods.pptx)
20+
10. [Restricted Boltzmann Machine](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week2-2b%20Restricted%20Boltzmann%20machine.pptx)
21+
11. [Let's implement denoising autoencoder](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week2-2c%20Denoising%20auto-encoder%20(dae_mnist).pptx)
22+
23+
## Week3 - CNN basics
24+
1. [Semantic segmentation: FCN, DeconvNet, DeepLab with atrous conv](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week3-1b%20Semantic%20segmentation%20details%2BSOTA.pptx)
25+
2. [Let's implement a simple CNN](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week3-1c%20What%20is%20CNN%20(cnn_mnist_simple).pptx)
26+
3. [Let's implement a basic CNN](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week3-1d%20Powerful%20CNN%20(cnn_mnist_basic).pptx)
27+
4. [Let's implement semantic segmentation](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week3-1e%20Implementing%20semantic%20segmentation%20(semseg_basic).pptx)
28+
5. [Weakly supervised localization: Global average pooling](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week3-2a%20Weakly%20supervised%20learning.pptx)
29+
6. [Implement MLP and CNN on your OWN DATASET](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week3-2b%20Use%20your%20own%20dataset%20(basic_gendataset%2C%20lr%2C%20mlp%2C%20cnn).pptx)
30+
7. [Denoising deconvolutional neural network](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week3-2c%20Denoising%20deconvolutional%20network.pptx)
31+
32+
## Week4 - CNN applications + RNN basics
33+
1. [Image detection (RCNN, SPPnet, FastRCNN, FasterRCNN)](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week4-1a%20Image%20detection%20(RCNN%2C%20SPPnet%2C%20FastRCNN%2C%20FasterRCNN).pptx)
34+
2. [Other detections (YOLO, AttentionNet)](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week4-1b%20Other%20dections%20(YOLO%2C%20AttentionNet).pptx)
35+
3. [Let's use TensorBoards](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week4-1c%20TensorBoard.pptx)
36+
4. [RNN from Colah's blog](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week4-2a%20RNN%20(colah%20blog).pptx)
37+
5. [Visual QnQ: DPPnet + MCBP!](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week4-2b%20Visual%20QnA.pptx)
38+
6. [Super resolution](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week4-2c%20Super%20resolution.pptx)
39+
7. [Deep reinforcement learning](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week4-2d%20Deep%20reinforcement%20learning.pptx)
40+
41+
## Week5 - RNN applications
42+
1. [RNN basic + handwriting generation](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week5-1a%20RNN%20%2B%20LSTM%20%2B%20Handwrting%20Gen.pptx)
43+
2. [Let's implement RNNs](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week5-1b%20Implementing%20RNN%20(rnn_mnist_simple).pptx)
44+
3. [Let's implement Word2vec](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week5-2a%20Word2Vec%20again.pptx)
45+
4. [Image captioning: Show and Tell + Show, attend and tell](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week5-2b%20Image%20Captioning.pptx)
46+
5. [char-rnn + how can we use Hangul?](https://github.com/sjchoi86/dl_tutorials/blob/master/presentations/Week5-2c%20Hangul-RNN.pptx)
47+

0 commit comments

Comments
 (0)