Software

TensorFlow

when you have a hammer, everything looks like a nail.

R/RStudio

R users can access Keras and TensorFlow via the keras and tensorflow packages.

#install.packages("keras")
library(keras)
install_keras()
# install_keras(tensorflow = "gpu") # if NVIDIA GPU is available

Example: MNIST - MLP

Rmd, html.

Example: MNIST - CNN

Rmd, html.

Example: Generate text from Nietzsche’s writings - RNN LSTM

Rmd, html.

Example: IMDB review sentiment analysis - RNN LSTM

Rmd, html.

Example: Generate handwritten digits from MNIST - GAN

Rmd, html.