Evaluate the Performance of the Neural Network
Train and test the neural network with a full dataset and evaluate its performance.
We'll cover the following...
We'll cover the following...
Training and testing with a full dataset
Previously, we added a simple code to work out the fraction of correct answers. Let’s see what this updated code produces:
If we get a performance score of 0.7, that means we achieved 70% accuracy.
Discussion of the results
Let’s add all this new code we’ve just developed to test the neural network’s performance to our main program.
While we’re at it, let’s change the file names so that we are now pointing to the full training data set of 60,000 records, ...