Search⌘ K

Smooth Gradient Saliency

Explore the Smooth Gradient Saliency method that enhances image classifier interpretations by averaging gradients from noisy input images. Learn to implement this technique with MobileNet-V2 and reduce noise in saliency maps for sharper visual explanations.

Smooth gradient saliency

The vanilla gradient saliency computes the saliency map using the vanilla gradient GG of the score function fk(X)f^{k^*}(X) with respect to input XX. However, these gradients are often noisy, highlighting some pixels that seem randomly selected for the human eye. Such unwanted visual noise in the saliency maps can alter human judgment sometimes. For example, if the saliency map is noisy and highlights random background pixels, a data scientist might think the background information is relevant to the prediction, which should not be the case.

Smooth gradient (SmoothGrad ...