All Articles

XAI Methods - Guided Backpropagation

Published 22 Feb 2022 · 5min coffee icon5min coffee icon9 min read

What is Guided Backpropagation?

Guided Backpropagation (GBP) [3] is an approach designed by Springenberg et al., relying on the ideas of Deconvolution [1] and Saliency [2]. Authors argue that the approach taken by Simonyan et al. [2] has an issue with the flow of negative gradients, which decreases the accuracy of the higher layers we are trying to visualize. Their idea is to combine two approaches and add a “guide” to the Saliency with the help of deconvolution.

To achieve that, we have to focus on the ReLU activation function in the CNN. When computing values at the Rectification component of the deconvnet, we are masking all non-positive values with the ReLU. In that layer, the computed values are calculated only base on the top signal (reconstruction from the upper layer), and the input is ignored. On the other hand, in the Saliency method, we are focusing on the gradient values computed base on the input image. If we take deconvnet masking of the Rectification layer and apply it on the gradient values of the Saliency method, we could remove noise caused by the negative gradient values. This noise removal is the reason why the method has the prefix “guided”. Deconvolution guides backpropagation values of the Saliency method to produce sharper images (Fig. 1c).

Original Image
(a) Original Image.
Deconv result
(b) Deconvolution results.
GBP result
(c) GBP results.
Saliency result
(d) Saliency results.
Figure 1: Visualisation of saliency maps produced by Saliency [Fig. 1d], Deconvolution [Fig. 1b], and GBP [Fig. 1c] of the same input image [Fig. 1a] for a class "weimaraner". All the maps are generated using the same model (ResNet18). Image source: Stanford Dogs

As we can see in Figure 1c, the use of the “guide” significantly reduces the amount of noise generated by the Saliency method (Fig. 1d). The idea of GBP is often misunderstood and interpreted as “applying deconvolution results on the saliency results”. This is not true because ReLU masking extracted from the deconvnet is applied on every level and therefore affects the gradient values all the way down to the input of the CNN, not only at the first level of the CNN.

Further reading

I’ve decided to create a series of articles explaining the most important XAI methods currently used in practice. Here is the main article: XAI Methods - The Introduction

References:

  1. M. D. Zeiler, R. Fergus. Visualizing and Understanding Convolutional Networks, 2013.
  2. K. Simonyan, A. Vedaldi, A. Zisserman. Deep inside convolutional networks: Visualising image classification models and saliency maps, 2014.
  3. J. T. Springenberg, A. Dosovitskiy, T. Brox, M. Riedmiller. Striving for Simplicity: The All Convolutional Net, 2014.
  4. A. Khosla, N. Jayadevaprakash, B. Yao, L. Fei-Fei. Stanford dogs dataset. https://www.kaggle.com/jessicali9530/stanford-dogs-dataset, 2019. Accessed: 2021-10-01.

Citation

Kemal Erdem, (Feb 2022). "XAI Methods - Guided Backpropagation". https://erdem.pl/2022/02/xai-methods-guided-backpropagation
or
@article{erdem2022xaiMethodsGuidedBackpropagation,
    title   = "XAI Methods - Guided Backpropagation",
    author  = "Kemal Erdem",
    journal = "https://erdem.pl",
    year    = "2022",
    month   = "Feb",
    url     = "https://erdem.pl/2022/02/xai-methods-guided-backpropagation"
}