|
Algorithm 1 Explainability Pipeline for DPCSE-Net |
Require: Input image x, trained DPCSE-Net model F
-
1:
Compute feature maps and class score
-
2:
Grad-CAM: Compute importance weights and generate the spatial heatmap to visualize class-discriminative regions
-
3:
SE-Attention: Extract and normalize channel-wise attention weights s from the SE module to form , indicating the most informative feature channels
-
4:
Integrated Gradients: Calculate the pixel-level attribution map by integrating gradients from a baseline to the input image x
-
5:
Return the visualization set
|