Running the following setup script, which has worked before, but alas no longer...
The installation seems succesful, but when trying to fetch the mnist dataset, I simply get the error:
> mnist <- dataset_mnist()
Error:
Setup:
# Install packages --------------------------------------------------------
install.packages("tidyverse")
install.packages("devtools")
# Load libraries ----------------------------------------------------------
library("tidyverse")
library("devtools")
# Install keras / tensorflow ----------------------------------------------
install_github("rstudio/keras")
# Would you like to install miniconda? Y
library(keras)
install_keras(tensorflow = "1.13.1")
# Test installation -------------------------------------------------------
library("keras")
mnist <- dataset_mnist()
print(head(mnist))
# Clean up ----------------------------------------------------------------
rm(mnist)