10 min read

Getting started with TensorFlow in R

I have installed TensorFlow on my Windows laptop, and it appears to work using Python. I’m a heavy R user, so I’d like to be able to run TensorFlow through R (and RStudio).

First I installed the tensorflow library

install.packages('tensorflow')
library(tensorflow)

This warned me that my version of R wasn’t up to date. I updated R to 3.4.1 and RStudio to 1.0.153 to make sure that everything is the current version.

Now to get TensorFlow working I will follow the instructions on https://tensorflow.rstudio.com/.

library(tensorflow)
sess = tf$Session()
hello <- tf$constant('Hello, TensorFlow!')
sess$run(hello)
## b'Hello, TensorFlow!'

Looks like it works fine, very simple so far.

Running an example

I’m going to try to get the MNIST example to work found at https://tensorflow.rstudio.com/tutorial_mnist_pros.html. First we load the data.

library(tensorflow)
input_dataset <- tf$examples$tutorials$mnist$input_data
mnist <- input_dataset$read_data_sets("MNIST-data", one_hot = TRUE)

Looks like the data loads fine.

Now we start a session. I don’t know why they have the library command again, but I’ll play along.

library(tensorflow)
sess <- tf$InteractiveSession()

Next we create the placeholders for the data.

x <- tf$placeholder(tf$float32, shape(NULL, 784L))
y_ <- tf$placeholder(tf$float32, shape(NULL, 10L))

And next the variables.

W <- tf$Variable(tf$zeros(shape(784L, 10L)))
b <- tf$Variable(tf$zeros(shape(10L)))

We initialize these variables.

sess$run(tf$global_variables_initializer())

Now we create a simple regression model. A single layer with a softmax.

y <- tf$nn$softmax(tf$matmul(x,W) + b)

And use cross-entropy for the loss function.

cross_entropy <- tf$reduce_mean(-tf$reduce_sum(y_ * tf$log(y), reduction_indices=1L))

We specify how to train the model.

optimizer <- tf$train$GradientDescentOptimizer(0.5)
train_step <- optimizer$minimize(cross_entropy)

Now we can train the model with the following for loop.

for (i in 1:1000) {
  batches <- mnist$train$next_batch(100L)
  batch_xs <- batches[[1]]
  batch_ys <- batches[[2]]
  sess$run(train_step,
           feed_dict = dict(x = batch_xs, y_ = batch_ys))
}

Now we can see how the model does by checking its predictions.

correct_prediction <- tf$equal(tf$argmax(y, 1L), tf$argmax(y_, 1L))

We check the accuracy with the following.

accuracy <- tf$reduce_mean(tf$cast(correct_prediction, tf$float32))
accuracy$eval(feed_dict=dict(x = mnist$test$images, y_ = mnist$test$labels))
## [1] 0.9204

That simple model was able to classify over 91% of the digits correctly, a hair less than the example online, but still very good for such a simple model.

Multilayer ConvNet

Now we try to more advanced model to improve the results. Convolution neural networks are very popular for image recognition. Seeing as object recognition networks can get very high accuracies, we should be able to get near perfect on such a simple task as digit recognition.

Initialize functions to create weight and bias variables

weight_variable <- function(shape) {
  initial <- tf$truncated_normal(shape, stddev=0.1)
  tf$Variable(initial)
}

bias_variable <- function(shape) {
  initial <- tf$constant(0.1, shape=shape)
  tf$Variable(initial)
}

Set up the convolutions and pooling.

conv2d <- function(x, W) {
  tf$nn$conv2d(x, W, strides=c(1L, 1L, 1L, 1L), padding='SAME')
}

max_pool_2x2 <- function(x) {
  tf$nn$max_pool(
    x, 
    ksize=c(1L, 2L, 2L, 1L),
    strides=c(1L, 2L, 2L, 1L), 
    padding='SAME')
}

Now we create the variables for the first layer.

W_conv1 <- weight_variable(shape(5L, 5L, 1L, 32L))
b_conv1 <- bias_variable(shape(32L))

x must be reshaped from a vector of length 784 to a 28 by 28 square in order for the convolutions to work.

x_image <- tf$reshape(x, shape(-1L, 28L, 28L, 1L))

Next we apply the relu and pooling after multiplying x by the weight and adding the bias.

h_conv1 <- tf$nn$relu(conv2d(x_image, W_conv1) + b_conv1)
h_pool1 <- max_pool_2x2(h_conv1)

Now we add a second conv layer.

W_conv2 <- weight_variable(shape = shape(5L, 5L, 32L, 64L))
b_conv2 <- bias_variable(shape = shape(64L))

h_conv2 <- tf$nn$relu(conv2d(h_pool1, W_conv2) + b_conv2)
h_pool2 <- max_pool_2x2(h_conv2)

And a fully connected layer.

W_fc1 <- weight_variable(shape(7L * 7L * 64L, 1024L))
b_fc1 <- bias_variable(shape(1024L))

h_pool2_flat <- tf$reshape(h_pool2, shape(-1L, 7L * 7L * 64L))
h_fc1 <- tf$nn$relu(tf$matmul(h_pool2_flat, W_fc1) + b_fc1)

We use dropout to help regularize.

keep_prob <- tf$placeholder(tf$float32)
h_fc1_drop <- tf$nn$dropout(h_fc1, keep_prob)

And finally a softmax layer as output.

W_fc2 <- weight_variable(shape(1024L, 10L))
b_fc2 <- bias_variable(shape(10L))

y_conv <- tf$nn$softmax(tf$matmul(h_fc1_drop, W_fc2) + b_fc2)

Now we can run the training and optimization.

cross_entropy <- tf$reduce_mean(-tf$reduce_sum(y_ * tf$log(y_conv), reduction_indices=1L))
train_step <- tf$train$AdamOptimizer(1e-4)$minimize(cross_entropy)
correct_prediction <- tf$equal(tf$argmax(y_conv, 1L), tf$argmax(y_, 1L))
accuracy <- tf$reduce_mean(tf$cast(correct_prediction, tf$float32))
sess$run(tf$global_variables_initializer())

for (i in 1:20000) {
  batch <- mnist$train$next_batch(50L)
  if (i %% 100 == 0) {
    train_accuracy <- accuracy$eval(feed_dict = dict(
        x = batch[[1]], y_ = batch[[2]], keep_prob = 1.0))
    cat(sprintf("step %d, training accuracy %g\n", i, train_accuracy))
  }
  train_step$run(feed_dict = dict(
    x = batch[[1]], y_ = batch[[2]], keep_prob = 0.5))
}
## step 100, training accuracy 0.84
## step 200, training accuracy 0.84
## step 300, training accuracy 0.92
## step 400, training accuracy 0.9
## step 500, training accuracy 1
## step 600, training accuracy 0.96
## step 700, training accuracy 0.9
## step 800, training accuracy 0.92
## step 900, training accuracy 0.94
## step 1000, training accuracy 0.96
## step 1100, training accuracy 0.96
## step 1200, training accuracy 0.96
## step 1300, training accuracy 1
## step 1400, training accuracy 0.98
## step 1500, training accuracy 1
## step 1600, training accuracy 0.96
## step 1700, training accuracy 0.98
## step 1800, training accuracy 0.98
## step 1900, training accuracy 1
## step 2000, training accuracy 1
## step 2100, training accuracy 0.98
## step 2200, training accuracy 0.96
## step 2300, training accuracy 1
## step 2400, training accuracy 0.98
## step 2500, training accuracy 1
## step 2600, training accuracy 1
## step 2700, training accuracy 1
## step 2800, training accuracy 1
## step 2900, training accuracy 0.98
## step 3000, training accuracy 0.98
## step 3100, training accuracy 0.96
## step 3200, training accuracy 1
## step 3300, training accuracy 1
## step 3400, training accuracy 1
## step 3500, training accuracy 0.98
## step 3600, training accuracy 0.98
## step 3700, training accuracy 0.98
## step 3800, training accuracy 1
## step 3900, training accuracy 1
## step 4000, training accuracy 1
## step 4100, training accuracy 1
## step 4200, training accuracy 1
## step 4300, training accuracy 0.98
## step 4400, training accuracy 1
## step 4500, training accuracy 1
## step 4600, training accuracy 0.98
## step 4700, training accuracy 0.98
## step 4800, training accuracy 1
## step 4900, training accuracy 0.98
## step 5000, training accuracy 1
## step 5100, training accuracy 0.98
## step 5200, training accuracy 1
## step 5300, training accuracy 0.98
## step 5400, training accuracy 0.98
## step 5500, training accuracy 1
## step 5600, training accuracy 1
## step 5700, training accuracy 1
## step 5800, training accuracy 1
## step 5900, training accuracy 0.96
## step 6000, training accuracy 0.98
## step 6100, training accuracy 1
## step 6200, training accuracy 0.98
## step 6300, training accuracy 1
## step 6400, training accuracy 1
## step 6500, training accuracy 0.96
## step 6600, training accuracy 1
## step 6700, training accuracy 0.98
## step 6800, training accuracy 1
## step 6900, training accuracy 0.98
## step 7000, training accuracy 1
## step 7100, training accuracy 1
## step 7200, training accuracy 1
## step 7300, training accuracy 0.98
## step 7400, training accuracy 1
## step 7500, training accuracy 1
## step 7600, training accuracy 0.98
## step 7700, training accuracy 1
## step 7800, training accuracy 1
## step 7900, training accuracy 0.98
## step 8000, training accuracy 1
## step 8100, training accuracy 1
## step 8200, training accuracy 1
## step 8300, training accuracy 1
## step 8400, training accuracy 0.98
## step 8500, training accuracy 0.98
## step 8600, training accuracy 0.98
## step 8700, training accuracy 1
## step 8800, training accuracy 1
## step 8900, training accuracy 0.96
## step 9000, training accuracy 1
## step 9100, training accuracy 1
## step 9200, training accuracy 0.98
## step 9300, training accuracy 0.98
## step 9400, training accuracy 1
## step 9500, training accuracy 1
## step 9600, training accuracy 1
## step 9700, training accuracy 1
## step 9800, training accuracy 1
## step 9900, training accuracy 1
## step 10000, training accuracy 1
## step 10100, training accuracy 0.98
## step 10200, training accuracy 1
## step 10300, training accuracy 1
## step 10400, training accuracy 0.96
## step 10500, training accuracy 1
## step 10600, training accuracy 0.98
## step 10700, training accuracy 1
## step 10800, training accuracy 1
## step 10900, training accuracy 1
## step 11000, training accuracy 1
## step 11100, training accuracy 1
## step 11200, training accuracy 1
## step 11300, training accuracy 1
## step 11400, training accuracy 1
## step 11500, training accuracy 1
## step 11600, training accuracy 1
## step 11700, training accuracy 1
## step 11800, training accuracy 1
## step 11900, training accuracy 1
## step 12000, training accuracy 1
## step 12100, training accuracy 1
## step 12200, training accuracy 1
## step 12300, training accuracy 1
## step 12400, training accuracy 0.96
## step 12500, training accuracy 1
## step 12600, training accuracy 1
## step 12700, training accuracy 1
## step 12800, training accuracy 1
## step 12900, training accuracy 1
## step 13000, training accuracy 1
## step 13100, training accuracy 1
## step 13200, training accuracy 1
## step 13300, training accuracy 1
## step 13400, training accuracy 1
## step 13500, training accuracy 1
## step 13600, training accuracy 1
## step 13700, training accuracy 0.98
## step 13800, training accuracy 1
## step 13900, training accuracy 1
## step 14000, training accuracy 1
## step 14100, training accuracy 1
## step 14200, training accuracy 1
## step 14300, training accuracy 1
## step 14400, training accuracy 1
## step 14500, training accuracy 1
## step 14600, training accuracy 1
## step 14700, training accuracy 0.98
## step 14800, training accuracy 1
## step 14900, training accuracy 0.98
## step 15000, training accuracy 1
## step 15100, training accuracy 1
## step 15200, training accuracy 1
## step 15300, training accuracy 1
## step 15400, training accuracy 1
## step 15500, training accuracy 1
## step 15600, training accuracy 1
## step 15700, training accuracy 1
## step 15800, training accuracy 1
## step 15900, training accuracy 1
## step 16000, training accuracy 1
## step 16100, training accuracy 1
## step 16200, training accuracy 1
## step 16300, training accuracy 0.98
## step 16400, training accuracy 0.98
## step 16500, training accuracy 0.98
## step 16600, training accuracy 1
## step 16700, training accuracy 1
## step 16800, training accuracy 1
## step 16900, training accuracy 1
## step 17000, training accuracy 1
## step 17100, training accuracy 1
## step 17200, training accuracy 1
## step 17300, training accuracy 1
## step 17400, training accuracy 1
## step 17500, training accuracy 1
## step 17600, training accuracy 1
## step 17700, training accuracy 1
## step 17800, training accuracy 1
## step 17900, training accuracy 1
## step 18000, training accuracy 1
## step 18100, training accuracy 1
## step 18200, training accuracy 1
## step 18300, training accuracy 0.98
## step 18400, training accuracy 0.98
## step 18500, training accuracy 1
## step 18600, training accuracy 1
## step 18700, training accuracy 1
## step 18800, training accuracy 1
## step 18900, training accuracy 1
## step 19000, training accuracy 1
## step 19100, training accuracy 1
## step 19200, training accuracy 1
## step 19300, training accuracy 1
## step 19400, training accuracy 1
## step 19500, training accuracy 1
## step 19600, training accuracy 1
## step 19700, training accuracy 1
## step 19800, training accuracy 1
## step 19900, training accuracy 1
## step 20000, training accuracy 1
test_accuracy <- accuracy$eval(feed_dict = dict(
     x = mnist$test$images, y_ = mnist$test$labels, keep_prob = 1.0))
cat(sprintf("test accuracy %g", test_accuracy))
## test accuracy 0.9931

The default of 20000 steps was far too many. It had near perfect training predictions after 1500 and it took about an hour to train the full thing. When I changed it to 2000 iterations it had test accuracy of 97.7%.