%md
ScaDaMaLe Course [site](https://lamastex.github.io/scalable-data-science/sds/3/x/) and [book](https://lamastex.github.io/ScaDaMaLe/index.html)
_Thanks to [Christian von Koch](https://www.linkedin.com/in/christianvonkoch/) and [William Anzén](https://www.linkedin.com/in/william-anz%C3%A9n-b52003199/) for their contributions towards making these materials Spark 3.0.1 and Python 3+ compliant._
%md
This is Raaz's update of Siva's whirl-wind compression of the free Google's DL course in Udacity [https://www.youtube.com/watch?v=iDyeK3GvFpo](https://www.youtube.com/watch?v=iDyeK3GvFpo) for Adam Briendel's DL modules that will follow.
This is Raaz's update of Siva's whirl-wind compression of the free Google's DL course in Udacity https://www.youtube.com/watch?v=iDyeK3GvFpo for Adam Briendel's DL modules that will follow.
%md
# Deep learning: A Crash Introduction
This notebook provides an introduction to Deep Learning. It is meant to help you descend more fully into these learning resources and references:
* Udacity's course on Deep Learning [https://www.udacity.com/course/deep-learning--ud730](https://www.udacity.com/course/deep-learning--ud730) by Google engineers: Arpan Chakraborty and Vincent Vanhoucke and their full video playlist:
* [https://www.youtube.com/watch?v=X_B9NADf2wk&index=2&list=PLAwxTw4SYaPn_OWPFT9ulXLuQrImzHfOV](https://www.youtube.com/watch?v=X_B9NADf2wk&index=2&list=PLAwxTw4SYaPn_OWPFT9ulXLuQrImzHfOV)
* Neural networks and deep learning [http://neuralnetworksanddeeplearning.com/](http://neuralnetworksanddeeplearning.com/) by Michael Nielsen
* Deep learning book [http://www.deeplearningbook.org/](http://www.deeplearningbook.org/) by Ian Goodfellow, Yoshua Bengio and Aaron Courville
Deep learning: A Crash Introduction
This notebook provides an introduction to Deep Learning. It is meant to help you descend more fully into these learning resources and references:
- Udacity's course on Deep Learning https://www.udacity.com/course/deep-learning--ud730 by Google engineers: Arpan Chakraborty and Vincent Vanhoucke and their full video playlist:
- Neural networks and deep learning http://neuralnetworksanddeeplearning.com/ by Michael Nielsen
- Deep learning book http://www.deeplearningbook.org/ by Ian Goodfellow, Yoshua Bengio and Aaron Courville
%md
* Deep learning - buzzword for Artifical Neural Networks
* What is it?
* Supervised learning model - Classifier
* Unsupervised model - Anomaly detection (say via auto-encoders)
* Needs lots of data
* Online learning model - backpropogation
* Optimization - Stochastic gradient descent
* Regularization - L1, L2, Dropout
***
***
* Supervised
- Fully connected network
- Convolutional neural network - Eg: For classifying images
- Recurrent neural networks - Eg: For use on text, speech
* Unsupervised
- Autoencoder
- Deep learning - buzzword for Artifical Neural Networks
- What is it?
- Supervised learning model - Classifier
- Unsupervised model - Anomaly detection (say via auto-encoders)
- Needs lots of data
- Online learning model - backpropogation
- Optimization - Stochastic gradient descent
- Regularization - L1, L2, Dropout
- Supervised
- Fully connected network
- Convolutional neural network - Eg: For classifying images
- Recurrent neural networks - Eg: For use on text, speech
- Unsupervised
- Autoencoder
%md
***
***
### A quick recap of logistic regression / linear models
**(watch now 46 seconds from 4 to 50)**:
[](https://www.youtube.com/watch?v=G8eNWzxOgqE?rel=0&autoplay=1&modestbranding=1&start=4&end=50)
***
-- Video Credit: Udacity's deep learning by Arpan Chakraborthy and Vincent Vanhoucke
***
#### Regression

y = mx + c
%md
***
***
### Recap - Gradient descent
**(1:54 seconds)**:
[](https://www.youtube.com/watch?v=x449QQDhMDE)
***
-- Video Credit: Udacity's deep learning by Arpan Chakraborthy and Vincent Vanhoucke
%md
***
***
### Recap - Stochastic Gradient descent
**(2:25 seconds)**:
[](https://www.youtube.com/watch?v=hMLUgM6kTp8)
**(1:28 seconds)**:
[](https://www.youtube.com/watch?v=s6jC7Wc9iMI)
***
-- Video Credit: Udacity's deep learning by Arpan Chakraborthy and Vincent Vanhoucke
%md
HOGWILD! Parallel SGD without locks [http://i.stanford.edu/hazy/papers/hogwild-nips.pdf](http://i.stanford.edu/hazy/papers/hogwild-nips.pdf)
HOGWILD! Parallel SGD without locks http://i.stanford.edu/hazy/papers/hogwild-nips.pdf
%md
***
***
### Why deep learning? - Linear model
**(24 seconds - 15 to 39)**:
[](https://www.youtube.com/watch?v=PfNfY1xmkLs)
***
-- Video Credit: Udacity's deep learning by Arpan Chakraborthy and Vincent Vanhoucke
%md
***
***
**Neural Network**
Watch now (45 seconds, 0-45)
[](https://www.youtube.com/watch?v=Opg63pan_YQ)
***
-- Video Credit: Udacity's deep learning by Arpan Chakraborthy and Vincent Vanhoucke
%md
Is decision tree a linear model?
[http://datascience.stackexchange.com/questions/6787/is-decision-tree-algorithm-a-linear-or-nonlinear-algorithm](http://datascience.stackexchange.com/questions/6787/is-decision-tree-algorithm-a-linear-or-nonlinear-algorithm)
Is decision tree a linear model?
http://datascience.stackexchange.com/questions/6787/is-decision-tree-algorithm-a-linear-or-nonlinear-algorithm
ScaDaMaLe Course site and book
Thanks to Christian von Koch and William Anzén for their contributions towards making these materials Spark 3.0.1 and Python 3+ compliant.