.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "beginner/introyt/captumyt.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_beginner_introyt_captumyt.py: `Introduction `_ || `Tensors `_ || `Autograd `_ || `Building Models `_ || `TensorBoard Support `_ || `Training Models `_ || **Model Understanding** Model Understanding with Captum =============================== Follow along with the video below or on `youtube `__. Download the notebook and corresponding files `here `__. .. raw:: html
`Captum `__ (“comprehension” in Latin) is an open source, extensible library for model interpretability built on PyTorch. With the increase in model complexity and the resulting lack of transparency, model interpretability methods have become increasingly important. Model understanding is both an active area of research as well as an area of focus for practical applications across industries using machine learning. Captum provides state-of-the-art algorithms, including Integrated Gradients, to provide researchers and developers with an easy way to understand which features are contributing to a model’s output. Full documentation, an API reference, and a suite of tutorials on specific topics are available at the `captum.ai `__ website. Introduction ------------ Captum’s approach to model interpretability is in terms of *attributions.* There are three kinds of attributions available in Captum: - **Feature Attribution** seeks to explain a particular output in terms of features of the input that generated it. Explaining whether a movie review was positive or negative in terms of certain words in the review is an example of feature attribution. - **Layer Attribution** examines the activity of a model’s hidden layer subsequent to a particular input. Examining the spatially-mapped output of a convolutional layer in response to an input image in an example of layer attribution. - **Neuron Attribution** is analagous to layer attribution, but focuses on the activity of a single neuron. In this interactive notebook, we’ll look at Feature Attribution and Layer Attribution. Each of the three attribution types has multiple **attribution algorithms** associated with it. Many attribution algorithms fall into two broad categories: - **Gradient-based algorithms** calculate the backward gradients of a model output, layer output, or neuron activation with respect to the input. **Integrated Gradients** (for features), **Layer Gradient \* Activation**, and **Neuron Conductance** are all gradient-based algorithms. - **Perturbation-based algorithms** examine the changes in the output of a model, layer, or neuron in response to changes in the input. The input perturbations may be directed or random. **Occlusion,** **Feature Ablation,** and **Feature Permutation** are all perturbation-based algorithms. We’ll be examining algorithms of both types below. Especially where large models are involved, it can be valuable to visualize attribution data in ways that relate it easily to the input features being examined. While it is certainly possible to create your own visualizations with Matplotlib, Plotly, or similar tools, Captum offers enhanced tools specific to its attributions: - The ``captum.attr.visualization`` module (imported below as ``viz``) provides helpful functions for visualizing attributions related to images. - **Captum Insights** is an easy-to-use API on top of Captum that provides a visualization widget with ready-made visualizations for image, text, and arbitrary model types. Both of these visualization toolsets will be demonstrated in this notebook. The first few examples will focus on computer vision use cases, but the Captum Insights section at the end will demonstrate visualization of attributions in a multi-model, visual question-and-answer model. Installation ------------ Before you get started, you need to have a Python environment with: - Python version 3.6 or higher - For the Captum Insights example, Flask 1.1 or higher and Flask-Compress (the latest version is recommended) - PyTorch version 1.2 or higher (the latest version is recommended) - TorchVision version 0.6 or higher (the latest version is recommended) - Captum (the latest version is recommended) - Matplotlib version 3.3.4, since Captum currently uses a Matplotlib function whose arguments have been renamed in later versions To install Captum in an Anaconda or pip virtual environment, use the appropriate command for your environment below: With ``conda``:: conda install pytorch torchvision captum flask-compress matplotlib=3.3.4 -c pytorch With ``pip``:: pip install torch torchvision captum matplotlib==3.3.4 Flask-Compress Restart this notebook in the environment you set up, and you’re ready to go! A First Example --------------- To start, let’s take a simple, visual example. We’ll start with a ResNet model pretrained on the ImageNet dataset. We’ll get a test input, and use different **Feature Attribution** algorithms to examine how the input images affect the output, and see a helpful visualization of this input attribution map for some test images. First, some imports: .. GENERATED FROM PYTHON SOURCE LINES 136-155 .. code-block:: default import torch import torch.nn.functional as F import torchvision.transforms as transforms import torchvision.models as models import captum from captum.attr import IntegratedGradients, Occlusion, LayerGradCam, LayerAttribution from captum.attr import visualization as viz import os, sys import json import numpy as np from PIL import Image import matplotlib.pyplot as plt from matplotlib.colors import LinearSegmentedColormap .. GENERATED FROM PYTHON SOURCE LINES 156-160 Now we’ll use the TorchVision model library to download a pretrained ResNet. Since we’re not training, we’ll place it in evaluation mode for now. .. GENERATED FROM PYTHON SOURCE LINES 160-165 .. code-block:: default model = models.resnet18(weights='IMAGENET1K_V1') model = model.eval() .. GENERATED FROM PYTHON SOURCE LINES 166-169 The place where you got this interactive notebook should also have an ``img`` folder with a file ``cat.jpg`` in it. .. GENERATED FROM PYTHON SOURCE LINES 169-176 .. code-block:: default test_img = Image.open('img/cat.jpg') test_img_data = np.asarray(test_img) plt.imshow(test_img_data) plt.show() .. GENERATED FROM PYTHON SOURCE LINES 177-183 Our ResNet model was trained on the ImageNet dataset, and expects images to be of a certain size, with the channel data normalized to a specific range of values. We’ll also pull in the list of human-readable labels for the categories our model recognizes - that should be in the ``img`` folder as well. .. GENERATED FROM PYTHON SOURCE LINES 183-206 .. code-block:: default # model expects 224x224 3-color image transform = transforms.Compose([ transforms.Resize(224), transforms.CenterCrop(224), transforms.ToTensor() ]) # standard ImageNet normalization transform_normalize = transforms.Normalize( mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225] ) transformed_img = transform(test_img) input_img = transform_normalize(transformed_img) input_img = input_img.unsqueeze(0) # the model requires a dummy batch dimension labels_path = 'img/imagenet_class_index.json' with open(labels_path) as json_data: idx_to_labels = json.load(json_data) .. GENERATED FROM PYTHON SOURCE LINES 207-210 Now, we can ask the question: What does our model think this image represents? .. GENERATED FROM PYTHON SOURCE LINES 210-219 .. code-block:: default output = model(input_img) output = F.softmax(output, dim=1) prediction_score, pred_label_idx = torch.topk(output, 1) pred_label_idx.squeeze_() predicted_label = idx_to_labels[str(pred_label_idx.item())][1] print('Predicted:', predicted_label, '(', prediction_score.squeeze().item(), ')') .. GENERATED FROM PYTHON SOURCE LINES 220-225 We’ve confirmed that ResNet thinks our image of a cat is, in fact, a cat. But *why* does the model think this is an image of a cat? For the answer to that, we turn to Captum. .. GENERATED FROM PYTHON SOURCE LINES 228-257 Feature Attribution with Integrated Gradients --------------------------------------------- **Feature attribution** attributes a particular output to features of the input. It uses a specific input - here, our test image - to generate a map of the relative importance of each input feature to a particular output feature. `Integrated Gradients `__ is one of the feature attribution algorithms available in Captum. Integrated Gradients assigns an importance score to each input feature by approximating the integral of the gradients of the model’s output with respect to the inputs. In our case, we’re going to be taking a specific element of the output vector - that is, the one indicating the model’s confidence in its chosen category - and use Integrated Gradients to understand what parts of the input image contributed to this output. Once we have the importance map from Integrated Gradients, we’ll use the visualization tools in Captum to give a helpful representation of the importance map. Captum’s ``visualize_image_attr()`` function provides a variety of options for customizing display of your attribution data. Here, we pass in a custom Matplotlib color map. Running the cell with the ``integrated_gradients.attribute()`` call will usually take a minute or two. .. GENERATED FROM PYTHON SOURCE LINES 257-282 .. code-block:: default # Initialize the attribution algorithm with the model integrated_gradients = IntegratedGradients(model) # Ask the algorithm to attribute our output target to attributions_ig = integrated_gradients.attribute(input_img, target=pred_label_idx, n_steps=200) # Show the original image for comparison _ = viz.visualize_image_attr(None, np.transpose(transformed_img.squeeze().cpu().detach().numpy(), (1,2,0)), method="original_image", title="Original Image") default_cmap = LinearSegmentedColormap.from_list('custom blue', [(0, '#ffffff'), (0.25, '#0000ff'), (1, '#0000ff')], N=256) _ = viz.visualize_image_attr(np.transpose(attributions_ig.squeeze().cpu().detach().numpy(), (1,2,0)), np.transpose(transformed_img.squeeze().cpu().detach().numpy(), (1,2,0)), method='heat_map', cmap=default_cmap, show_colorbar=True, sign='positive', title='Integrated Gradients') .. GENERATED FROM PYTHON SOURCE LINES 283-286 In the image above, you should see that Integrated Gradients gives us the strongest signal around the cat’s location in the image. .. GENERATED FROM PYTHON SOURCE LINES 289-310 Feature Attribution with Occlusion ---------------------------------- Gradient-based attribution methods help to understand the model in terms of directly computing out the output changes with respect to the input. *Perturbation-based attribution* methods approach this more directly, by introducing changes to the input to measure the effect on the output. `Occlusion `__ is one such method. It involves replacing sections of the input image, and examining the effect on the output signal. Below, we set up Occlusion attribution. Similarly to configuring a convolutional neural network, you can specify the size of the target region, and a stride length to determine the spacing of individual measurements. We’ll visualize the output of our Occlusion attribution with ``visualize_image_attr_multiple()``, showing heat maps of both positive and negative attribution by region, and by masking the original image with the positive attribution regions. The masking gives a very instructive view of what regions of our cat photo the model found to be most “cat-like”. .. GENERATED FROM PYTHON SOURCE LINES 310-330 .. code-block:: default occlusion = Occlusion(model) attributions_occ = occlusion.attribute(input_img, target=pred_label_idx, strides=(3, 8, 8), sliding_window_shapes=(3,15, 15), baselines=0) _ = viz.visualize_image_attr_multiple(np.transpose(attributions_occ.squeeze().cpu().detach().numpy(), (1,2,0)), np.transpose(transformed_img.squeeze().cpu().detach().numpy(), (1,2,0)), ["original_image", "heat_map", "heat_map", "masked_image"], ["all", "positive", "negative", "positive"], show_colorbar=True, titles=["Original", "Positive Attribution", "Negative Attribution", "Masked"], fig_size=(18, 6) ) .. GENERATED FROM PYTHON SOURCE LINES 331-334 Again, we see greater significance placed on the region of the image that contains the cat. .. GENERATED FROM PYTHON SOURCE LINES 337-358 Layer Attribution with Layer GradCAM ------------------------------------ **Layer Attribution** allows you to attribute the activity of hidden layers within your model to features of your input. Below, we’ll use a layer attribution algorithm to examine the activity of one of the convolutional layers within our model. GradCAM computes the gradients of the target output with respect to the given layer, averages for each output channel (dimension 2 of output), and multiplies the average gradient for each channel by the layer activations. The results are summed over all channels. GradCAM is designed for convnets; since the activity of convolutional layers often maps spatially to the input, GradCAM attributions are often upsampled and used to mask the input. Layer attribution is set up similarly to input attribution, except that in addition to the model, you must specify a hidden layer within the model that you wish to examine. As above, when we call ``attribute()``, we specify the target class of interest. .. GENERATED FROM PYTHON SOURCE LINES 358-367 .. code-block:: default layer_gradcam = LayerGradCam(model, model.layer3[1].conv2) attributions_lgc = layer_gradcam.attribute(input_img, target=pred_label_idx) _ = viz.visualize_image_attr(attributions_lgc[0].cpu().permute(1,2,0).detach().numpy(), sign="all", title="Layer 3 Block 1 Conv 2") .. GENERATED FROM PYTHON SOURCE LINES 368-373 We’ll use the convenience method ``interpolate()`` in the `LayerAttribution `__ base class to upsample this attribution data for comparison to the input image. .. GENERATED FROM PYTHON SOURCE LINES 373-389 .. code-block:: default upsamp_attr_lgc = LayerAttribution.interpolate(attributions_lgc, input_img.shape[2:]) print(attributions_lgc.shape) print(upsamp_attr_lgc.shape) print(input_img.shape) _ = viz.visualize_image_attr_multiple(upsamp_attr_lgc[0].cpu().permute(1,2,0).detach().numpy(), transformed_img.permute(1,2,0).numpy(), ["original_image","blended_heat_map","masked_image"], ["all","positive","positive"], show_colorbar=True, titles=["Original", "Positive Attribution", "Masked"], fig_size=(18, 6)) .. GENERATED FROM PYTHON SOURCE LINES 390-393 Visualizations such as this can give you novel insights into how your hidden layers respond to your input. .. GENERATED FROM PYTHON SOURCE LINES 396-412 Visualization with Captum Insights ---------------------------------- Captum Insights is an interpretability visualization widget built on top of Captum to facilitate model understanding. Captum Insights works across images, text, and other features to help users understand feature attribution. It allows you to visualize attribution for multiple input/output pairs, and provides visualization tools for image, text, and arbitrary data. In this section of the notebook, we’ll visualize multiple image classification inferences with Captum Insights. First, let’s gather some image and see what the model thinks of them. For variety, we’ll take our cat, a teapot, and a trilobite fossil: .. GENERATED FROM PYTHON SOURCE LINES 412-429 .. code-block:: default imgs = ['img/cat.jpg', 'img/teapot.jpg', 'img/trilobite.jpg'] for img in imgs: img = Image.open(img) transformed_img = transform(img) input_img = transform_normalize(transformed_img) input_img = input_img.unsqueeze(0) # the model requires a dummy batch dimension output = model(input_img) output = F.softmax(output, dim=1) prediction_score, pred_label_idx = torch.topk(output, 1) pred_label_idx.squeeze_() predicted_label = idx_to_labels[str(pred_label_idx.item())][1] print('Predicted:', predicted_label, '/', pred_label_idx.item(), ' (', prediction_score.squeeze().item(), ')') .. GENERATED FROM PYTHON SOURCE LINES 430-447 …and it looks like our model is identifying them all correctly - but of course, we want to dig deeper. For that we’ll use the Captum Insights widget, which we configure with an ``AttributionVisualizer`` object, imported below. The ``AttributionVisualizer`` expects batches of data, so we’ll bring in Captum’s ``Batch`` helper class. And we’ll be looking at images specifically, so well also import ``ImageFeature``. We configure the ``AttributionVisualizer`` with the following arguments: - An array of models to be examined (in our case, just the one) - A scoring function, which allows Captum Insights to pull out the top-k predictions from a model - An ordered, human-readable list of classes our model is trained on - A list of features to look for - in our case, an ``ImageFeature`` - A dataset, which is an iterable object returning batches of inputs and labels - just like you’d use for training .. GENERATED FROM PYTHON SOURCE LINES 447-481 .. code-block:: default from captum.insights import AttributionVisualizer, Batch from captum.insights.attr_vis.features import ImageFeature # Baseline is all-zeros input - this may differ depending on your data def baseline_func(input): return input * 0 # merging our image transforms from above def full_img_transform(input): i = Image.open(input) i = transform(i) i = transform_normalize(i) i = i.unsqueeze(0) return i input_imgs = torch.cat(list(map(lambda i: full_img_transform(i), imgs)), 0) visualizer = AttributionVisualizer( models=[model], score_func=lambda o: torch.nn.functional.softmax(o, 1), classes=list(map(lambda k: idx_to_labels[k][1], idx_to_labels.keys())), features=[ ImageFeature( "Photo", baseline_transforms=[baseline_func], input_transforms=[], ) ], dataset=[Batch(input_imgs, labels=[282,849,69])] ) .. GENERATED FROM PYTHON SOURCE LINES 482-494 Note that running the cell above didn’t take much time at all, unlike our attributions above. That’s because Captum Insights lets you configure different attribution algorithms in a visual widget, after which it will compute and display the attributions. *That* process will take a few minutes. Running the cell below will render the Captum Insights widget. You can then choose attributions methods and their arguments, filter model responses based on predicted class or prediction correctness, see the model’s predictions with associated probabilities, and view heatmaps of the attribution compared with the original image. .. GENERATED FROM PYTHON SOURCE LINES 494-496 .. code-block:: default visualizer.render() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.000 seconds) .. _sphx_glr_download_beginner_introyt_captumyt.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: captumyt.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: captumyt.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_