Making Predictions
Explore how to use the predict function to classify letters A, B, and C with a trained model. Understand how forward propagation produces output probabilities, and learn to interpret prediction results in a letter classification task using NumPy deep learning.
We'll cover the following...
We'll cover the following...
The predict function
Make predictions on the trained model.
Explanation
Recall that x[0] has the letter A pixel values, x[1] has letter B pixel values, x[2] has letter C pixel values. ...