๐ 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_propagationfunction.
- Call the error function calculate_errorand save the loss in each epoch.
- Call the backpropagationfunction.
 Ask