April 2018
Beginner to intermediate
500 pages
11h 26m
English
So far, we have built a neural network that is fairly simple. A traditional neural network would have a few more parameters that can be varied to achieve a better predictive power.
Let's understand them by using the classic MNIST dataset. MNIST is a handwritten digit dataset that contains images of size 28 x 28 pixels that are represented as NumPy arrays of 28 x 28 dimensions.
Each image is of a digit and the challenge in hand is to predict the digit the image corresponds to.
Let's download and explore some of the images present in the MNIST dataset, as follows:

In the preceding code snippet, we are ...
Read now
Unlock full access