π Challenge: Training - 3 Layered Neural Network
Train the 3 layered neural network so that it finds the optimal weights that classify the three letters.
We'll cover the following...
Problem statement
Train the 3 layered neural network.
- Call the
forward_propagation
function. - Call the error function
calculate_error
and save the loss in each epoch. - Call the
backpropagation
function.