Deep Learning with R and Keras: Build a Handwritten Digit Classifier in 10 Minutes
This article is originally published at https://appsilon.com
Deep Learning in R – MNIST Classifier with Keras
In a day and age where everyone seems to know how to solve at least basic deep learning tasks with Python, one question arises: How does R fit into the whole deep learning picture?
You don’t need deep learning algorithms to solve basic image classification tasks. Here’s how to classify handwritten digits with R and Random Forests.
Here is some good news for R fans – both Tensorflow and Keras libraries are available to you, and they’re easy to configure. Today you’ll learn how to solve a well-known MNIST problem with Keras.
Navigate to a section:
- Installing Tensorflow and Keras with R
- Dataset Loading and Preparation
- Model Training
- Model Evaluation
- Conclusion
Installing Tensorflow and Keras with R
To build an image classifier model with Keras, you’ll have to install the library first. But before you can install Keras, you’ll have to install Tensorflow.
The procedure is a bit different than when installing other libraries. Yes, you’ll still use the install.packages()
function, but there’s an extra step involved.
Here’s how to install Tensorflow from the R console:
install.packages("tensorflow") library(tensorflow) install_tensorflow()
Most likely, you’ll be prompted to install Miniconda, which is something you should do – assuming you don’t have it already.
The installation process for Keras is identical – just be aware that Tensorflow has to be installed first:
install.packages("keras") library(keras) install_keras()
Restart the R session if you’re asked to – failing to do so could result in some DLL issues, at least according to R.
And that’s all you need to install the libraries. Let’s load and prepare the dataset next.
Dataset Loading and Preparation
Luckily for us, the MNIST dataset is built into the Keras library. You can get it by calling the dataset_mnist()
function once the library is imported.
Further, you should separate the dataset into four categories:
X_train
– contains digits for the training setX_test
– contains digits for the testing sety_train
– contains labels for the training sety_test
– contains labels for the testing set
You can use the following code snippet to import Keras and unpack the data:
It’s a good start, but we’re not done yet. This article will only use linear layers (no convolutions), so you’ll have to reshape the input images from 28×28 to 1×784 each. You can do so with the array_reshape()
function from Keras. Further, you’ll also divide each value of the image matrix by 255, so all images are in the [0, 1] range.
That will handle the input images, but we also have to convert the labels. These are stored as integers by default, and we’ll convert them to categories with the to_categorical()
function.
Here’s the entire code snippet:
And that’s all we need to start with model training. Let’s do that next.
Model Training
MNIST is a large and simple dataset, so a simple model architecture should result in a near-perfect model.
We’ll have three hidden layers with 256, 128, and 64 neurons, respectively, and an output layer with ten neurons since there are ten distinct classes in the MNIST dataset.
Every linear layer is followed by dropout in order to prevent overfitting.
Once you declare the model, you can use the summary()
function to print its architecture:
The results are shown in the following figure:
One step remains before we can begin training – compiling the model. This step involves choosing how loss is measured, choosing a function for reducing loss, and choosing a metric that measures overall performance.
Let’s go with categorical cross-entropy, Adam, and accuracy, respectively:
You can now call the fit()
function to train the model. The following snippet trains the model for 50 epochs, feeding 128 images at a time:
Once this line of code is executed, you’ll see the following output:
After a minute or soo, 50 epochs will elapse. Here’s the final output you should see:
At the same time, you’ll see a chart updating as the model trains. It shows both loss and accuracy on training and validation subsets. Here’s how it should look like when the training process is complete:
And that’s it – you’re ready to evaluate the model. Let’s do that next.
Model Evaluation
You can use the evaluate()
function from Keras to evaluate the performance on the test set. Here’s the code snippet for doing so:
And here are the results:
As you can see, the model resulted in an above 98% accuracy on previously unseen data.
To make predictions on a new subset of data, you can use the predict_classes()
function as shown below:
Here are the results:
And that’s how you can use Keras in R! Let’s wrap things up in the next section.
Conclusion
Most of the online resources for deep learning are written in R – I’ll give you that. That doesn’t mean R is obsolete in this area. Both Tensorflow and Keras have official R support, and model development is just as easy as with Python.
If you want to implement machine learning in your organization, you can always reach out to Appsilon for help.
Learn More
- Machine Learning with R: A Complete Guide to Linear Regression
- Machine Learning with R: A Complete Guide to Logistic Regression
- Machine Learning with R: A Complete Guide to Decision Trees
- Machine Learning with R: A Complete Guide to Gradient Boosting and XGBoost
- YOLO Algorithm and YOLO Object Detection: An Introduction
Appsilon is hiring for remote roles! See our Careers page for all open positions, including R Shiny Developers, Fullstack Engineers, Frontend Engineers, a Senior Infrastructure Engineer, and a Community Manager. Join Appsilon and work on groundbreaking projects with the world’s most influential Fortune 500 companies.
Article Deep Learning with R and Keras: Build a Handwritten Digit Classifier in 10 Minutes comes from Appsilon | End to End Data Science Solutions.
Thanks for visiting r-craft.org
This article is originally published at https://appsilon.com
Please visit source website for post related comments.