Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 1.1 KB

guided_backprop.md

File metadata and controls

22 lines (13 loc) · 1.1 KB

September 2019

tl;dr: Guided prop for visualizing CNN efficiently. Also, max pooling can be replaced by conv with larger strides.

Overall impression

Backprop visualizes contribution of pixels to a classification results via backprop, but mask out the negative gradient. This leads to less noise in the visualized saliency map as compared to vanilla backprop.

The idea is summarized well in this blog post by the author of FlashTorch.

The idea can be combined with class activation map (CAM) or grad-CAM as well. But as shown in pytorch-cnn-visualizations, the difference between guided backprop (GB) and grad-CAM is not that big.

Key ideas

  • Summaries of the key ideas

Technical details

  • Summary of technical details

Notes

  • Questions and notes on how to improve/revise the current work