Skip to content

Instantly share code, notes, and snippets.

@ayman
Last active June 5, 2018 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayman/bf127eb1b2892e8091e87b6419c2134b to your computer and use it in GitHub Desktop.
Save ayman/bf127eb1b2892e8091e87b6419c2134b to your computer and use it in GitHub Desktop.
An example of training MNIST in R using Keras.
## From: https://tensorflow.rstudio.com/keras/
library(keras)
mnist <- dataset_mnist()
x_train <- mnist$train$x
y_train <- mnist$train$y
x_test <- mnist$test$x
y_test <- mnist$test$y
## reshape
x_train <- array_reshape(x_train, c(nrow(x_train), 784))
x_test <- array_reshape(x_test, c(nrow(x_test), 784))
## rescale
x_train <- x_train / 255
x_test <- x_test / 255
y_train <- to_categorical(y_train, 10)
y_test <- to_categorical(y_test, 10)
model <- keras_model_sequential()
model %>%
layer_dense(units = 256, activation = 'relu', input_shape = c(784)) %>%
layer_dropout(rate = 0.4) %>%
layer_dense(units = 128, activation = 'relu') %>%
layer_dropout(rate = 0.3) %>%
layer_dense(units = 10, activation = 'softmax')
summary(model)
model %>% compile(loss = 'categorical_crossentropy',
optimizer = optimizer_rmsprop(),
metrics = c('accuracy'))
history <- model %>% fit(x_train, y_train,
epochs = 30, batch_size = 128,
validation_split = 0.2)
plot(history)
model %>% evaluate(x_test, y_test)
model %>% predict_classes(x_test)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment