Introduction to Deep Learning, basic theory and full coding examples.
Discussion is on the structure of a neuron and the algorithmical concept concept behind learning. The coded example single linear neuron or perceptron, learning the logic OR and AND Gates.
- Inspiration - The Biological Neuron Model
- Perceptron - An Artificial Neural Network
- Decision Units - Activation functions
- Learning - the Bias and weights
- Perceptron Example - Logic OR
How to extend learning,with deep networks and non linear activation functions.
- Why deep learning ?
- Non Linear Activation function
- Handwritten Digit Classification (Mnist )
Delta rule for learning, Gradient Descent and backpropagation
- How to train Multiple Layer Neural Networks
- Gradient Decent - Minimize loss function iteratively
- Delta rule for learning
- Backpropagation
- Train and predict MLP for Logic OR - example
Build and visualize Simple feed forward dense network with Mnist data
- Load and normalize data set
- Create the model
- Train the model
- Evaluate Model
- Predict
What is convolution network ?
- Intuition and examples
- Basic terms and building blocks of CNN
- Keras CNN to classify Mnist data
Few simple python plotting functions