Search⌘ K
AI Features

Eigen-CAM

Explore the Eigen-CAM technique to interpret image classifier decisions by applying singular value decomposition on feature maps. Understand how Eigen-CAM generates activation maps highlighting important image regions without relying on gradients, making it robust against adversarial attacks.

Mathematical model for Eigen-CAM

Eigen decomposition-based CAM (Eigen-CAM) computes and visualizes the principle components of the final layer convolutional features for generating class activation maps. In other words, Eigen-CAM uses the elements of the highest principle component vector as weights for the linear combination in the CAM equation.

Let’s assume that FlRh×w\mathcal{F}_l \in \R^{h \times w} is the lthl^{th} feature map obtained from the penultimate convolutional layer (hh and ww are the height and width of the feature map) and Fl(i,j)\mathcal{F}_l(i,j) represents the activation of the (i,j)th(i,j)^{th} neuron in the lthl^{th} feature map (total LL feature maps in F\mathcal{F} ...