February 2020
Intermediate to advanced
328 pages
8h 19m
English
In this recipe, we will use the MNIST digit dataset. This is a database of handwritten digits that consists of 60,000 28x28 grayscale images of the 10 digits, along with a test set of 10,000 images. We will build a model that will recognize handwritten digits from this dataset.
To start, let's load the keras library:
library(keras)
Now, we can do some data preprocessing and model building.
Read now
Unlock full access