|
1 | 1 | # Overview |
2 | 2 |
|
3 | | -| <img src="./images/deep-learning-book-goodfellow-cover.jpg" width="350" height="400"> | <img src="./images/bertelsmann.png"> | |
4 | | -|-------------------------------------------------------------------|-------------------------------| |
5 | | - |
6 | 3 | This repository contains -<br> |
7 | 4 | :heavy_check_mark: Chapter-wise **summarized notes**.<br> |
8 | 5 | :heavy_check_mark: Chapter-wise **PDF.**<br> |
9 | 6 | :heavy_check_mark: Chapter-wise **codes.** (.ipynb files)<br> |
10 | 7 | :heavy_check_mark: Summarized notes on Udacity's **Nanodegree in AI** ([Bertelsmann Scholarship](https://www.udacity.com/bertelsmann-tech-scholarships))<br> |
11 | 8 |
|
12 | | -# Chapters |
13 | | -- **Part I: Applied Math and Machine Learning Basics** |
14 | | - - Chapter 2: Linear Algebra - [Notes](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Notes/Ch_1_Linear_algebra/Readme.md) |
15 | | - - Chapter 3: Probability and Information Theory - [Notes](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Notes/Ch_2_Probability_and_Information_Theorey/Readme.md) |
16 | | - - Chapter 4: Numerical Computation - [Notes](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Notes/Ch_3_Numerical_Computation/ReadMe.md) |
17 | | - - Chapter 5: Machine Learning Basics - [Notes](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Notes/Ch_4_Machine_Learning_Basics/ReadMe.md) |
18 | | - |
19 | | -- **Part II: Modern Practical Deep Networks** |
20 | | - - Chapter 6: Deep Feedforward Networks - [Notes](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Notes/Ch_5_Deep_Forward_Networks/ReadMe.md)<br> |
21 | | - - Single Layer Neural Network - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/1.%20Intro%20to%20PyTorch/02.single_layer_neural_network.ipynb) |
22 | | - - Multi-Layer Neural Network - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/1.%20Intro%20to%20PyTorch/03.mutilayer_neural_network.ipynb) |
23 | | - - Softmax Function - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/1.%20Intro%20to%20PyTorch/04.implementing_softmax.ipynb) |
24 | | - - ReLU Function - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/1.%20Intro%20to%20PyTorch/05.ReLU_using_pytorch.ipynb) |
25 | | - - Training Neural Network - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/1.%20Intro%20to%20PyTorch/06.training_neural_network_via_pytorch.ipynb)<br> |
26 | | - - Chapter 7: Regularization for Deep Learning - [Notes](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Notes/Ch_6_Regularization_for_Deep_Learning/Readme.md) |
27 | | - - Regularization - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/1.%20Intro%20to%20PyTorch/08.%20Regularization_using_pytorch.ipynb) |
28 | | - - Chapter 8: Optimization for Training Deep Models - [Notes](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Notes/Ch_7_Optimization_for_training_deep_models/Readme.md) |
29 | | - - Chapter 9: Convolution Neural Network - [Notes](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Notes/Ch_8_Convolutional_Neural_Networks/Readme.md) |
30 | | - - Loading Image Data - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/1.%20Intro%20to%20PyTorch/09.%20loading_image_data_via_pytorch.ipynb) |
31 | | - - Validating Image Data - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/2.%20Convolution%20Neural%20Networks/01.%20Load_train_test_and_validate_your_model.ipynb) |
32 | | - - CFIAR Image Classifier - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/2.%20Convolution%20Neural%20Networks/CFIAR_image_classifier.ipynb) |
33 | | - - Data Augmentation - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/2.%20Convolution%20Neural%20Networks/data_augmentation.ipynb) |
34 | | - - Style-Transfer Learning - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/2.%20Convolution%20Neural%20Networks/style-transfer.ipynb) |
35 | | - - Chapter 10: Recurrent Neural Network - [Notes](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Notes/Ch_9_Recurrent_Neural_Networks/Readme.md) |
36 | | - - Time-series - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/3.%20Recurrent%20Neural%20Networks/time-series-using-rnn.ipynb) |
37 | | - - Text generation - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/3.%20Recurrent%20Neural%20Networks/Char_RNN.ipynb) |
38 | | - - Sentiment analysis - [Code](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/Deep-learning-with-pytorch/3.%20Recurrent%20Neural%20Networks/Sentiment_analysis_via_RNN.ipynb) |
39 | | - |
40 | | -- **[References](https://github.com/purvasingh96/Deep-learning-with-neural-networks/blob/master/References.md)** |
41 | | - |
42 | | - |
| 9 | +The images in this repository are taken from Udacity's Deep Learning Nanodegree program. |
43 | 10 | ## Contributor |
44 | 11 | - [Purva Singh](https://github.com/purvasingh96) |
45 | 12 |
|
|
0 commit comments