Hands-On: Analyze and Understand Your Model with Tensorboard

In this lesson, you will set up and use a webapp to monitor the re-training of the deep learning model that you have been working with throughout this course.

The Deep Learning on images plugin you installed in the hands-on lesson, Install the Deep Learning Plugins, includes a standard webapp template, Tensorboard: monitor the re-training of deep learning models.

../../../_images/image-class-visual-way101.png

While re-training your model, you can use Tensorboard to view the performance of your model in real time, across epochs, along with the model’s architecture. The goal is to understand the architecture of your model and check the evolution of the most useful metrics over epochs, like the loss, and the Area Under the Curve (AUC).

Note

One epoch is equal to one complete pass of the entire training dataset by the model.

Create the Webapp

Let’s create the webapp.

Note

In the hands-on lesson, Transfer Learning to Re-Train the Model, you created a recipe, Retraining image classification model. In the settings, ensure that the checkbox, You can access tensorboard via a DSS webapp is selected.

../../../_images/image-class-visual-way41.png

In the Flow, select Webapps* from the code menu, then click **Create Your First Webapp.

../../../_images/image-class-visual-way51.png
  1. Click Code Webapp.

  2. Select the Standard webapp, then choose Tensorboard: monitor the re-training of deep learning models.

../../../_images/image-class-visual-way61.png
  1. Name your webapp “model_performance” and click Create. Your webapp is now created.

Dataiku DSS lets you know the webapp requires a backend and that it is not running. In the next section, we’ll set up a code environment to satisfy this requirement.

Create an Environment

Let’s set up a code environment that offers the “tensorboard” python package needed by the webapp.

  1. From the Apps menu, select Administration, then choose the Code Envs tab.

  2. In the Code Envs tab, click New Python Env.

  3. Name it “Python_DL”, select version Python 3.6,, then click Create.

../../../_images/image-class-visual-way71.png

Wait while Dataiku DSS creates the environment.

Install Additional Packages

Now we’ll install the set of mandatory packages.

  1. From the Code Envs tab, locate and open the newly-created environment.

  2. In the left panel, click Packages to install.

  3. Click Add Sets of Packages.

  4. In the Required package for dropdown, select Visual Deep Learning: Keras, Tensorflow (CPU) (or GPU if you install the GPU version of the Deep learning for images plugin).

  5. Click Add, then click Save and Update. Dataiku DSS updates the environment.

../../../_images/image-class-visual-way81.png

Select the Code Environment in Your Webapp’s Settings

You’ll need to return to your webapp to select this new code environment. To do this:

  1. Return to the Flow.

  2. Select your webapp from the code menu, then choose the Edit tab.

  3. Select the Settings tab.

  4. In the Environment dropdown, select the name of your newly created code environment. Save your changes.

Edit the Python File and Replace Model_Folder with Your Own

The final step in setting up your webapp is to make sure the name of the model folder matches the name of the folder in your Flow.

  1. In the webapp’s menu, select the Python tab.

  2. In the Variables That Need To Be Set section, rename the model folder to “Retrained model”.

  3. Save your changes, then click Backend to start the webapp.

  4. Save your changes.

kb/analytics-ml/image-classification-visual-way/_img/Image-class-visual-way9.png

Congratulations! You can now monitor your model during re-training in the Scalar tab of your webapp.

Access the Tensorboard to Monitor Your Model

Tensorboard gathers all the metrics you need to interpret the results of your model both on the training set and the test set. Specifically, you can monitor the following:

  • The accuracy, acc. This is the accuracy on the train set towards steps. Likewise, val_acc is the accuracy on the test set.

  • The loss, loss in Tensorboard. This is the evolution of loss on the train set towards steps. Likewise, val_loss is the loss on the test set.

To do this: 1. Return to the Flow. 2. Select your webapp from the code menu. 3. Click Refresh.

../../../_images/image-class-visual-way121.png

Analyze Your Model’s Architecture

Understanding your model’s architecture is useful particularly when using your own model. In this lesson, we have used a pre-trained model where the last layer is being retrained. In the graphs tab of the Tensorboard, you can visually access the model’s infrastructure. The graphs display the visual structure of the model.

You can scan your graph, and fold and unfold your nodes. each layer will have a color corresponding to its structure. For example, all activation layers will have the same color.

You can change the color code by changing the selection. Selecting a color code per device instead of per instance can help you distinguish between devices, particularly if you are using different devices, such as different GPUs.

  1. Select your webapp from the code menu, then choose the Edit tab.

  2. Locate Color in the left panel, then select the device option.

Your results will differ from the results show in the example: .. image:: _img/image-class-visual-way21

Note

The Trace input option displays all of the dependencies for a node in the whole graph.

What’s Next

So far, you have added a pre-trained model to your Flow using a plugin, and used the model to classify a set of test images. Then you used a folder of training images to improve the pre-trained model with transfer learning. In other words, you completed the task of object classification. You also learned how to monitor the re-training of your model and understand your model’s architecture using Tensorboard.

In the final set of hands-on lessons, you’ll use your project to perform an object detection task using another deep learning plugin.