Backpropagation Part 1
We'll cover the following...
Backpropagation
Backpropagation involves the steps of updating the Neural Network weights while training the Neural Network on the training dataset, and it updates the weights in such a way that the total error for the problem under consideration is minimized.
What is backward pass
It involves propagating the error (calculated at the output layer) backwards to the layers and updating the weights.
General context of a neuron and formulas
If we look into the general context of a neuron from the diagram above, we get the following equations.
-
: This sums up all the inputs multiplied with the respective weights.
-
This applied the activation function on the input being passed in.
-
...