knitr::opts_chunk$set( fig.width = 3, fig.height = 3, fig.path = "README-" ) library(dplyr)
Chris Hua / chua@wharton.upenn.edu
Produces the MNIST image recognition data as dataframes in R. Look at the vignettes for examples of how to work with the MNIST data, using tensorflow
and neuralnet
packages.
install.packages("devtools") devtools::install_github("stillmatic/MNIST")
Data is exported as MNIST::mnist_train
and MNIST::mnist_test
.
MNIST::mnist_train %>% dim
table(MNIST::mnist_test$y)
MNIST::show_digit(MNIST::mnist_train[42,])
Credit belongs to Yann Lecun, etc.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.