Skip to content

Instantly share code, notes, and snippets.

@darioappsilon
Created February 24, 2021 13:59
001_keras_mnist
library(keras)
mnist <- dataset_mnist()
X_train <- mnist$train$x
X_test <- mnist$test$x
y_train <- mnist$train$y
y_test <- mnist$test$y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment