Hyperparameter Tuning with the HParams Dashboard

When building machine learning models, you need to choose various hyperparameters, such as the dropout rate in a layer or the learning rate. These decisions impact model metrics, such as accuracy. Therefore, an important step in the machine learning workflow is to identify the best hyperparameters for your problem, which often involves experimentation. This process is known as “Hyperparameter Optimization” or “Hyperparameter Tuning”.

The HParams dashboard in TensorBoard provides several tools to help with this process of identifying the best experiment or most promising sets of hyperparameters.

This tutorial will focus on the following steps:

  1. Experiment setup and HParams summary
  2. Adapt TensorFlow runs to log hyperparameters and metrics
  3. Start runs and log them all under one parent directory
  4. Visualize the results in TensorBoard’s HParams dashboard

Note: The HParams summary APIs and dashboard UI are in a preview stage and will change over time.

Import TensorFlow and the TensorBoard HParams plugin:

library(tensorflow)
library(reticulate)
library(keras)
hp <- import("tensorboard.plugins.hparams.api")

Download the FashionMNIST dataset and scale it:

Experiment setup and the HParams experiment summary

Experiment with three hyperparameters in the model:

  • Number of units in the first dense layer
  • Dropout rate in the dropout layer
  • Optimizer

List the values to try, and log an experiment configuration to TensorBoard. This step is optional: you can provide domain information to enable more precise filtering of hyperparameters in the UI, and you can specify which metrics should be displayed.

If you choose to skip this step, you can use a string literal wherever you would otherwise use an HParam value: e.g., hparams["dropout"] or hparams$dropout instead of hparams[HP_DROPOUT].

HP_NUM_UNITS = hp$HParam('num_units', hp$Discrete(list(16, 32)))
HP_DROPOUT = hp$HParam('dropout', hp$RealInterval(0.1, 0.2))
HP_OPTIMIZER = hp$HParam('optimizer', hp$Discrete(list('adam', 'sgd')))

METRIC_ACCURACY = 'accuracy'

with(tf$summary$create_file_writer("logs/hparam_tuning")$as_default(), {
  hp$hparams_config(
    hparams = list(HP_NUM_UNITS, HP_DROPOUT, HP_OPTIMIZER),
    metrics = list(hp$Metric(METRIC_ACCURACY, display_name = "Accuracy"))
  )
})

Adapt TensorFlow runs to log hyperparameters and metrics

The model will be quite simple: two dense layers with a dropout layer between them. The training code will look familiar, although the hyperparameters are no longer hardcoded. Instead, the hyperparameters are provided in an hparams dictionary and used throughout the training function:

For each run, log an hparams summary with the hyperparameters and final accuracy:

When training Keras models, you can use callbacks instead of writing these directly:

model %>%  fit(
    ...,
    callbacks=list(
        callback_tensorboard(logdir),  # log metrics
        hp$KerasCallback(logdir, hparams),  # log hparams
    ),
)

Start runs and log them all under one parent directory

You can now try multiple experiments, training each one with a different set of hyperparameters.

For simplicity, use a grid search: try all combinations of the discrete parameters and just the lower and upper bounds of the real-valued parameter. For more complex scenarios, it might be more effective to choose each hyperparameter value randomly (this is called a random search). There are more advanced methods that can be used.

Run a few experiments, which will take a few minutes:

Visualize the results in TensorBoard’s HParams plugin

tensorboard("logs/hparam_tuning/")

The left pane of the dashboard provides filtering capabilities that are active across all the views in the HParams dashboard:

  • Filter which hyperparameters/metrics are shown in the dashboard
  • Filter which hyperparameter/metrics values are shown in the dashboard
  • Filter on run status (running, success, …)
  • Sort by hyperparameter/metric in the table view
  • Number of session groups to show (useful for performance when there are many experiments)

The HParams dashboard has three different views, with various useful information:

  • The Table View lists the runs, their hyperparameters, and their metrics.
  • The Parallel Coordinates View shows each run as a line going through an axis for each hyperparemeter and metric. Click and drag the mouse on any axis to mark a region which will highlight only the runs that pass through it. This can be useful for identifying which groups of hyperparameters are most important. The axes themselves can be re-ordered by dragging them.
  • The Scatter Plot View shows plots comparing each hyperparameter/metric with each metric. This can help identify correlations. Click and drag to select a region in a specific plot and highlight those sessions across the other plots.

A table row, a parallel coordinates line, and a scatter plot market can be clicked to see a plot of the metrics as a function of training steps for that session (although in this tutorial only one step is used for each run).