Introduction to TensorFlow.jl

Sören Dobberschütz · August 6, 2018

The first exercise is about getting a general idea of TensorFlow. We run through the following number of steps:

  1. Load the necessary packages and start a new session.
  2. Load the data.
  3. Define the features and targets as placeholders in 4. TensorFlow. Define the variables of the model and put them together to give a linear regressor model.
  4. Create some functions that help with feeding the input features to the model.
  5. Train the model and have a look at the result.

One interesting difference between the Python version and Julia is how to implement gradient clipping.

Tensorflow.jl does not expose tf.contrib.estimator.clip_gradients_by_norm (to my knowledge),

so instead of tf.contrib.estimator.clip_gradients_by_norm(my_optimizer, 5.0) we use the construction

my_optimizer=(train.GradientDescentOptimizer(learning_rate))
gvs = train.compute_gradients(my_optimizer, loss)
capped_gvs = [(clip_by_norm(grad, 5.), var) for (grad, var) in gvs]
my_optimizer = train.apply_gradients(my_optimizer,capped_gvs)

The Jupyter Notebook can be downloaded here. It is also displayed below.


This file is based on the file First Steps with TensorFlow, which is part of Google’s Machine Learning Crash Course.

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

First Steps with TensorFlow.jl

Learning Objectives:

  • Learn fundamental TensorFlow concepts
  • Building a linear regressor in TensorFlow to predict median housing price, at the granularity of city blocks, based on one input feature
  • Evaluate the accuracy of a model’s predictions using Root Mean Squared Error (RMSE)
  • Improve the accuracy of a model by tuning its hyperparameters

The data is based on 1990 census data from California. The training data can be downloaded here.

Setup

In this first cell, we’ll load the necessary libraries.

using Plots
gr(fmt=:png)
using DataFrames
using TensorFlow
import CSV
using Random
using Statistics
#using PyCall

Start a new TensorFlow session.

sess=Session()

Next, we’ll load our data set.

california_housing_dataframe = CSV.read("california_housing_train.csv", delim=",");

We’ll randomize the data, just to be sure not to get any pathological ordering effects that might harm the performance of Stochastic Gradient Descent. Additionally, we’ll scale median_house_value to be in units of thousands, so it can be learned a little more easily with learning rates in a range that we usually use.

california_housing_dataframe = california_housing_dataframe[Random.shuffle(1:size(california_housing_dataframe, 1)),:];
california_housing_dataframe[:median_house_value] /= 1000.0
california_housing_dataframe

17,000 rows × 9 columns

longitudelatitudehousing_median_agetotal_roomstotal_bedroomspopulationhouseholdsmedian_incomemedian_house_value
Float64⍰Float64⍰Float64⍰Float64⍰Float64⍰Float64⍰Float64⍰Float64⍰Float64
1-122.4337.6629.03541.0786.02259.0770.04.3039278.4
2-117.9933.8923.02111.0306.0979.0288.08.5621347.8
3-118.4234.2733.01209.0341.01097.0283.01.6295134.3
4-121.2638.1338.01419.0411.01226.0397.02.218868.8
5-118.2234.0534.01113.0313.0928.0290.03.1654155.0
6-121.9837.3736.01651.0344.01062.0331.04.575215.4
7-118.4434.0237.01592.0308.0783.0321.06.2583386.0
8-121.8837.3549.01728.0350.01146.0391.03.5781193.0
9-119.6437.3115.02654.0530.01267.0489.02.8393104.4
10-118.6135.4713.02267.0601.0756.0276.02.547478.4
11-119.6436.3523.03182.0563.01525.0585.03.810890.4
12-122.0436.9745.01302.0245.0621.0258.05.1806266.4
13-121.9937.3633.02321.0480.01230.0451.04.9091270.3
14-123.7539.3716.01377.0296.0830.0279.03.25151.4
15-121.8337.3831.03633.0843.02677.0797.03.2222184.8
16-117.234.487.04998.0953.02764.0891.03.205101.9
17-122.4137.7652.01427.0281.0620.0236.01.9944262.5
18-122.2638.06.0678.0104.0318.091.05.2375246.4
19-122.0937.730.01751.0269.0731.0263.06.005263.9
20-124.1741.7620.02673.0538.01282.0514.02.4605105.9
21-121.9136.5917.05039.0833.01678.0710.06.2323339.1
22-117.2934.1135.02426.0715.01920.0586.01.556168.0
23-117.3334.0835.02240.0423.01394.0396.03.179986.7
24-118.0833.8827.03065.0736.01840.0719.03.6417208.1
25-117.8133.8119.03154.0390.01404.0384.08.9257431.8
26-117.1732.7842.01104.0305.0892.0270.02.2768145.2
27-118.1334.0921.03862.01186.02773.01102.02.7816188.2
28-118.1733.9137.01499.0288.01237.0344.03.9333162.3
29-118.3233.9437.02740.0504.01468.0479.04.5368168.8
30-119.1236.5430.02747.0515.01368.0453.02.982885.2

Examine the Data

It’s a good idea to get to know your data a little bit before you work with it.

We’ll print out a quick summary of a few useful statistics on each column: count of examples, mean, standard deviation, max, min, and various quantiles.

describe(california_housing_dataframe)

9 rows × 8 columns

variablemeanminmedianmaxnuniquenmissingeltype
SymbolFloat64Float64Float64Float64NothingUnion…DataType
1longitude-119.562-124.35-118.49-114.310Float64
2latitude35.625232.5434.2541.950Float64
3housing_median_age28.58941.029.052.00Float64
4total_rooms2643.662.02127.037937.00Float64
5total_bedrooms539.4111.0434.06445.00Float64
6population1429.573.01167.035682.00Float64
7households501.2221.0409.06082.00Float64
8median_income3.883580.49993.544615.00010Float64
9median_house_value207.30114.999180.4500.001Float64

Build the First Model

In this exercise, we’ll try to predict median_house_value, which will be our label (sometimes also called a target). We’ll use total_rooms as our input feature.

NOTE: Our data is at the city block level, so this feature represents the total number of rooms in that block.

To train our model, we’ll set up a linear regressor model.

Step 1: Define Features and Configure Feature Columns

In order to import our training data into TensorFlow, we need to specify what type of data each feature contains. There are two main types of data we’ll use in this and future exercises:

  • Categorical Data: Data that is textual. In this exercise, our housing data set does not contain any categorical features, but examples you might see would be the home style, the words in a real-estate ad.

  • Numerical Data: Data that is a number (integer or float) and that you want to treat as a number. As we will discuss more later sometimes you might want to treat numerical data (e.g., a postal code) as if it were categorical.

To start, we’re going to use just one numeric input feature, total_rooms. The following code pulls the total_rooms data from our california_housing_dataframe and defines a feature and targer column:

# Define the input feature: total_rooms.
my_feature = california_housing_dataframe[:total_rooms]

# Configure a numeric feature column for total_rooms.
feature_columns = placeholder(Float32)
target_columns = placeholder(Float32)

Step 2: Define the Target

Next, we’ll define our target, which is median_house_value. Again, we can pull it from our california_housing_dataframe:

# Define the label.
targets = california_housing_dataframe[:median_house_value];

Step 3: Configure the LinearRegressor

Next, we’ll configure a linear regression model using LinearRegressor. We’ll train this model using the GradientDescentOptimizer, which implements Mini-Batch Stochastic Gradient Descent (SGD). The learning_rate argument controls the size of the gradient step.

NOTE: To be safe, we also apply gradient clipping to our optimizer via clip_gradients_by_norm. Gradient clipping ensures the magnitude of the gradients do not become too large during training, which can cause gradient descent to fail.

# Configure the linear regression model with our feature columns and optimizer.
m=Variable(0.05)
b=Variable(0.0)
y=m.*feature_columns+b
loss=reduce_sum((target_columns - y).^2)

# Use gradient descent as the optimizer for training the model.
# Set a learning rate of 0.0000001 for Gradient Descent.
learning_rate=0.0000001;
my_optimizer=train.minimize(train.GradientDescentOptimizer(learning_rate), loss)
#gvs = train.compute_gradients(my_optimizer, loss)
#capped_gvs = [(clip_by_norm(grad, 5.), var) for (grad, var) in gvs]
#my_optimizer = train.apply_gradients(my_optimizer,capped_gvs)

Step 4: Define the Input Function

To import our California housing data into our linear regressor model, we need to define an input function, which instructs TensorFlow how to preprocess the data, as well as how to batch, shuffle, and repeat it during model training.

First, we’ll convert our DataFrame feature data into an array. We can then construct a dataset object from our data, and then break our data into batches of batch_size, to be repeated for the specified number of epochs (num_epochs).

NOTE: When the default value of num_epochs=None is passed to repeat(), the input data will be repeated indefinitely.

Next, if shuffle is set to True, we’ll shuffle the data so that it’s passed to the model randomly during training. The buffer_size argument specifies the size of the dataset from which shuffle will randomly sample.

Finally, our input function constructs an iterator for the dataset and returns the next batch of data to the linear regressor.

function create_batches(features, targets, steps, batch_size=5, num_epochs=0)

    if(num_epochs==0)
        num_epochs=ceil(batch_size*steps/length(features))
    end

    features_batches=Union{Float64, Missings.Missing}[]
    target_batches=Union{Float64, Missings.Missing}[]

    for i=1:num_epochs
        select=Random.shuffle(1:length(features))
        append!(features_batches, features[select])
        append!(target_batches, targets[select])
    end

    return features_batches, target_batches
end
function next_batch(features_batches, targets_batches, batch_size, iter)

    select=mod((iter-1)*batch_size+1, length(features_batches)):mod(iter*batch_size, length(features_batches));

    ds=features_batches[select];
    target=targets_batches[select];

    return ds, target
end

function my_input_fn(features_batches, targets_batches, iter, batch_size=5, shuffle_flag=1)
    """Trains a linear regression model of one feature.

    Args:
      features: pandas DataFrame of features
      targets: pandas DataFrame of targets
      batch_size: Size of batches to be passed to the model
      shuffle: True or False. Whether to shuffle the data.
      num_epochs: Number of epochs for which data should be repeated. None = repeat indefinitely
    Returns:
      Tuple of (features, labels) for next data batch
    """


    # Construct a dataset, and configure batching/repeating.
    ds, target = next_batch(features_batches, targets_batches, batch_size, iter)

    # Shuffle the data, if specified.
    if shuffle_flag==1
      select=Random.shuffle(1:size(ds, 1));
        ds = ds[select,:]
        target = target[select, :]
    end

    # Return the next batch of data.
    return convert(Matrix{Float64},ds), convert(Matrix{Float64},target)
end

NOTE: We’ll continue to use this same input function in later exercises.

Step 5: Train the Model

We can now call train() on our my_optimizer to train the model. To start, we’ll train for 100 steps.

steps=100;
batch_size=5;
run(sess, global_variables_initializer())
features_batches, targets_batches = create_batches(my_feature, targets, steps, batch_size)

for i=1:steps
    features, labels = my_input_fn(features_batches, targets_batches, i, batch_size)
    run(sess, my_optimizer, Dict(feature_columns=>features, target_columns=>labels))
end

We can assess the values for the weight and bias variables:

weight = run(sess,m)
-2.1643431694151094e86
bias = run(sess,b)
-1.184116157861517e83

Step 6: Evaluate the Model

Let’s make predictions on that training data, to see how well our model fit it during training.

NOTE: Training error measures how well your model fits the training data, but it does not measure how well your model generalizes to new data. In later exercises, you’ll explore how to split your data to evaluate your model’s ability to generalize.

# Run the TF session on the data to make predictions.
predictions = run(sess, y, Dict(feature_columns=>convert.(Float64, my_feature)));

# Print Mean Squared Error and Root Mean Squared Error.
mean_squared_error = mean((predictions- targets).^2);
root_mean_squared_error = sqrt(mean_squared_error);
println("Mean Squared Error (on training data): ", mean_squared_error)
println("Root Mean Squared Error (on training data): ", root_mean_squared_error)
Mean Squared Error (on training data): 5.499863808321752e179
Root Mean Squared Error (on training data): 7.416106666116495e89

Is this a good model? How would you judge how large this error is?

Mean Squared Error (MSE) can be hard to interpret, so we often look at Root Mean Squared Error (RMSE) instead. A nice property of RMSE is that it can be interpreted on the same scale as the original targets.

Let’s compare the RMSE to the difference of the min and max of our targets:

min_house_value = minimum(california_housing_dataframe[:median_house_value])
max_house_value = maximum(california_housing_dataframe[:median_house_value])
min_max_difference = max_house_value - min_house_value

println("Min. Median House Value: " , min_house_value)
println("Max. Median House Value: " , max_house_value)
println("Difference between Min. and Max.: " , min_max_difference)
println("Root Mean Squared Error: " , root_mean_squared_error)
Min. Median House Value: 14.999
Max. Median House Value: 500.001
Difference between Min. and Max.: 485.00199999999995
Root Mean Squared Error: 7.416106666116495e89

Our error spans nearly half the range of the target values. Can we do better?

This is the question that nags at every model developer. Let’s develop some basic strategies to reduce model error.

The first thing we can do is take a look at how well our predictions match our targets, in terms of overall summary statistics.

calibration_data = DataFrame();
calibration_data[:predictions] = predictions;
calibration_data[:targets] = targets;
describe(calibration_data)

2 rows × 8 columns

variablemeanminmedianmaxnuniquenmissingeltype
SymbolFloat64Float64Float64Float64NothingNothingDataType
1predictions-5.7218e89-8.21087e90-4.60356e89-4.32987e86Float64
2targets207.30114.999180.4500.001Float64

Okay, maybe this information is helpful. How does the mean value compare to the model’s RMSE? How about the various quantiles?

We can also visualize the data and the line we’ve learned. Recall that linear regression on a single feature can be drawn as a line mapping input x to output y.

First, we’ll get a uniform random sample of the data so we can make a readable scatter plot.

sample = california_housing_dataframe[rand(1:size(california_housing_dataframe,1), 300),:];

Next, we’ll plot the line we’ve learned, drawing from the model’s bias term and feature weight, together with the scatter plot. The line will show up red.

# Get the min and max total_rooms values.
x_0 = minimum(sample[:total_rooms])
x_1 = maximum(sample[:total_rooms])

# Retrieve the final weight and bias generated during training.
weight = run(sess,m)
bias = run(sess,b)

# Get the predicted median_house_values for the min and max total_rooms values.
y_0 = weight * x_0 + bias
y_1 = weight * x_1 + bias

# Plot our regression line from (x_0, y_0) to (x_1, y_1).
plot([x_0, x_1], [y_0, y_1], c=:red, ylabel="median_house_value", xlabel="total_rooms", label="Fit line")

# Plot a scatter plot from our data sample.
scatter!(sample[:total_rooms], sample[:median_house_value], c=:blue, label="Data")

png

input_feature=:total_rooms

This initial line looks way off. See if you can look back at the summary stats and see the same information encoded there.

Together, these initial sanity checks suggest we may be able to find a much better line.

Tweak the Model Hyperparameters

For this exercise, we’ve put all the above code in a single function for convenience. You can call the function with different parameters to see the effect.

In this function, we’ll proceed in 10 evenly divided periods so that we can observe the model improvement at each period.

For each period, we’ll compute and graph training loss. This may help you judge when a model is converged, or if it needs more iterations.

We’ll also plot the feature weight and bias term values learned by the model over time. This is another way to see how things converge.

function train_model(learning_rate, steps, batch_size, input_feature=:total_rooms)
  """Trains a linear regression model of one feature.

  Args:
    learning_rate: A `float`, the learning rate.
    steps: A non-zero `int`, the total number of training steps. A training step
      consists of a forward and backward pass using a single batch.
    batch_size: A non-zero `int`, the batch size.
    input_feature: A `string` specifying a column from `california_housing_dataframe`
      to use as input feature.
  """

  periods = 10
  steps_per_period = steps / periods

  my_feature = input_feature
  my_feature_data = convert.(Float32,california_housing_dataframe[my_feature])
  my_label = :median_house_value
  targets = convert.(Float32,california_housing_dataframe[my_label])

  # Create feature columns.
  feature_columns = placeholder(Float32)
  target_columns = placeholder(Float32)

  # Create a linear regressor object.
  # Configure the linear regression model with our feature columns and optimizer.
  m=Variable(0.0)
  b=Variable(0.0)
  y=m.*feature_columns .+ b
  loss=reduce_sum((target_columns - y).^2)
  features_batches, targets_batches = create_batches(my_feature_data, targets, steps, batch_size)

  # Use gradient descent as the optimizer for training the model.
  my_optimizer=(train.GradientDescentOptimizer(learning_rate))
  gvs = train.compute_gradients(my_optimizer, loss)
  capped_gvs = [(clip_by_norm(grad, 5.), var) for (grad, var) in gvs]
  my_optimizer = train.apply_gradients(my_optimizer,capped_gvs)

  run(sess, global_variables_initializer())

  # Set up to plot the state of our model's line each period.
  sample = california_housing_dataframe[rand(1:size(california_housing_dataframe,1), 300),:];
  p1=scatter(sample[my_feature], sample[my_label], title="Learned Line by Period", ylabel=my_label, xlabel=my_feature,color=:coolwarm)
  colors= [ColorGradient(:coolwarm)[i] for i in range(0,stop=1, length=periods+1)]

  # Train the model, but do so inside a loop so that we can periodically assess
  # loss metrics.
  println("Training model...")
  println("RMSE (on training data):")
  root_mean_squared_errors = []
  for period in 1:periods
    # Train the model, starting from the prior state.
   for i=1:steps_per_period
    features, labels = my_input_fn(features_batches, targets_batches, convert(Int,(period-1)*steps_per_period+i), batch_size)
    run(sess, my_optimizer, Dict(feature_columns=>features, target_columns=>labels))
   end
    # Take a break and compute predictions.
    predictions = run(sess, y, Dict(feature_columns=>convert.(Float64, my_feature_data)));

    # Compute loss.
     mean_squared_error = mean((predictions- targets).^2)
     root_mean_squared_error = sqrt(mean_squared_error)
    # Occasionally print the current loss.
    println("  period ", period, ": ", root_mean_squared_error)
    # Add the loss metrics from this period to our list.
    push!(root_mean_squared_errors, root_mean_squared_error)
    # Finally, track the weights and biases over time.

    # Apply some math to ensure that the data and line are plotted neatly.
    y_extents = [0 maximum(sample[my_label])]

    weight = run(sess,m)
    bias = run(sess,b)

    x_extents = (y_extents .- bias) / weight    
    x_extents = max.(min.(x_extents, maximum(sample[my_feature])),
                           minimum(sample[my_feature]))    
    y_extents = weight .* x_extents .+ bias

    p1=plot!(x_extents', y_extents', color=colors[period], linewidth=2)
 end

  println("Model training finished.")

  # Output a graph of loss metrics over periods.
  p2=plot(root_mean_squared_errors, title="Root Mean Squared Error vs. Periods", ylabel="RMSE", xlabel="Periods")

  # Output a table with calibration data.
  calibration_data = DataFrame()
  calibration_data[:predictions] = predictions
  calibration_data[:targets] = targets
  describe(calibration_data)

  println("Final RMSE (on training data): ", root_mean_squared_errors[end])
  println("Final Weight (on training data): ", weight)
  println("Final Bias (on training data): ", bias)

  return p1, p2      
end

Task 1: Achieve an RMSE of 180 or Below

Tweak the model hyperparameters to improve loss and better match the target distribution. If, after 5 minutes or so, you’re having trouble beating a RMSE of 180, check the solution for a possible combination.

sess=Session()
p1, p2= train_model(
    0.0001, # learning rate
    20, # steps
    5 # batch size
)
Training model...
RMSE (on training data):
  period 1: 235.10452754834785
  period 2: 232.69434701416756
  period 3: 230.30994696291228
  period 4: 227.95213639459652
  period 5: 225.62174891342735
  period 6: 223.31964301811482
  period 7: 221.04670233191547
  period 8: 218.80383576386936
  period 9: 216.59197759206555
  period 10: 214.4120874591565
Model training finished.
Final RMSE (on training data): 214.4120874591565
Final Weight (on training data): -2.1643431694151094e86
Final Bias (on training data): -1.184116157861517e83
plot(p1, p2, layout=(1,2), legend=false)

png

Solution

Click below for one possible solution.

p1, p2= train_model(
    0.001, # learning rate
    20, # steps
    5 # batch size
)
Training model...
RMSE (on training data):
  period 1: 214.4120874591565
  period 2: 194.600111798902
  period 3: 179.20684050800634
  period 4: 169.44086805355906
  period 5: 169.434877106273
  period 6: 166.2920638633921
  period 7: 170.13862388370202
  period 8: 180.52860974790764
  period 9: 170.13354759178128
  period 10: 180.5261550915958
Model training finished.
Final RMSE (on training data): 180.5261550915958
Final Weight (on training data): -2.1643431694151094e86
Final Bias (on training data): -1.184116157861517e83
plot(p1, p2, layout=(1,2), legend=false)

png

This is just one possible configuration; there may be other combinations of settings that also give good results. Note that in general, this exercise isn’t about finding the one best setting, but to help build your intutions about how tweaking the model configuration affects prediction quality.

Is There a Standard Heuristic for Model Tuning?

This is a commonly asked question. The short answer is that the effects of different hyperparameters are data dependent. So there are no hard-and-fast rules; you’ll need to test on your data.

That said, here are a few rules of thumb that may help guide you:

  • Training error should steadily decrease, steeply at first, and should eventually plateau as training converges.
  • If the training has not converged, try running it for longer.
  • If the training error decreases too slowly, increasing the learning rate may help it decrease faster.
    • But sometimes the exact opposite may happen if the learning rate is too high.
  • If the training error varies wildly, try decreasing the learning rate.
    • Lower learning rate plus larger number of steps or larger batch size is often a good combination.
  • Very small batch sizes can also cause instability. First try larger values like 100 or 1000, and decrease until you see degradation.

Again, never go strictly by these rules of thumb, because the effects are data dependent. Always experiment and verify.

Task 2: Try a Different Feature

See if you can do any better by replacing the total_rooms feature with the population feature.

# YOUR CODE HERE
p1, p2= train_model(
    0.0001, # learning rate
    300, # steps
    5, # batch size
    :population #feature
)
Training model...
RMSE (on training data):
  period 1: 219.9919658470582
  period 2: 204.6500256564945
  period 3: 194.31631437316608
  period 4: 185.43549863077988
  period 5: 179.30763919257313
  period 6: 176.34328658344398
  period 7: 175.86576786417197
  period 8: 176.0115967111658
  period 9: 176.62469585550392
  period 10: 176.460123907991
Model training finished.
Final RMSE (on training data): 176.460123907991
Final Weight (on training data): -2.1643431694151094e86
Final Bias (on training data): -1.184116157861517e83
plot(p1, p2, layout=(1,2), legend=false)

png

Twitter, Facebook