Build a Digit Recognizer with PyTorch
Build and train a neural network to recognize handwritten digits
- Download MNIST database of handwritten digits
- Load the data into a PyTorch tensor
- Build a neural network model
- Train the model
- Evaluate the model
- Inspect the model outputs
We will only be loading subset of data for training and testing on Google Colab
Predicted Digit: 7. Actual Digit: 7
Predicted Digit: 2. Actual Digit: 2
Predicted Digit: 1. Actual Digit: 1
Predicted Digit: 0. Actual Digit: 0
Predicted Digit: 4. Actual Digit: 4
Predicted Digit: 1. Actual Digit: 1
Output 1 - Predicted Digit: 7. Actual Digit: 7