REVIEW 4 major objections 5 minor 62 references
On Spectral Properties of Gradient-based Explanation Methods
T0 review · 4 major / 5 minor · reviewed 2026-08-05 · deepseek-v4-flash
Pith's one-line read Gradient-based explanations act as frequency-band selectors, so the perturbation scale — not per-pixel importance — decides which features get credited.
desk verdict A genuinely new spectral formalism for gradient explanations, but the σ-dependent band-pass result is derived under an assumption that the paper itself says only holds in the small-noise regime, where the predicted σ-dependence should vanish. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the spectral representation of an explanation: writing the expected gradient E[∇_{x̃}f(x̃)] and the expected squared gradient E[(∇_{x̃}f(x̃))^2] in the Fourier domain via the convolution theorem and Plancherel identity. This converts each explanation into the pointwise product of three spectra: the classifier's decision-boundary spectrum, the gradient operator's frequency response, and the perturbation kernel's spectrum. That product is the band-pass filter; the paper's propositions about inconsistency, its optimal perturbation scale, and its SpectralLens aggregation are all read off this expression.
What would settle it
Train a small network with a known decision boundary containing one high-frequency and one low-frequency feature of equal total contribution. Compute SmoothGrad-squared at several Gaussian noise scales. If the attribution ranking does not cross near the predicted threshold derived from the two frequencies and the Gaussian variance—or if the measured Fourier spectrum of the explanation does not show the predicted band-pass shape—the central claim is wrong.
Extended reading notes
Core claim
The paper's central claim is that any explanation built from a gradient evaluated at perturbed inputs is a frequency-band selector, not a direct measurement of per-pixel contribution. In the Fourier domain, the expected gradient and expected squared gradient factor into the classifier's spectrum, a term from the gradient operator that grows with frequency, and the perturbation kernel's spectrum, which decays with frequency; their product is a band-pass filter whose peak location and width are set by the perturbation hyperparameters. The Fourier transform here is taken per pixel along the pixel-value axis, not across spatial dimensions. For SmoothGrad-squared with a Gaussian kernel, the attri
Load-bearing premise
The whole spectral derivation assumes the model's response to perturbed inputs is linear and convolutional, E[f(x+ξ)] = (f * κ)(x), so Fourier identities apply; the paper itself notes this is only valid when the perturbation stays near the sample, yet the band-pass formulas are applied to SmoothGrad at noise scales large enough that the concentration assumption fails.
Editorial extensions
If this is right
- SmoothGrad and similar methods do not rank pixels by contribution; each explanation is the decision boundary's content within one frequency band selected by the noise scale.
- Changing the noise scale changes which band is selected, so the same pixel can appear globally important at one scale and irrelevant at another; the paper formalizes this as a Rashomon-style inconsistency result.
- Squared gradients are theoretically safer than gradients: they are nonnegative, carry phase-free power-spectrum information, and avoid destructive interference when averaging over hyperparameters.
- Cosine similarity between the kernel's spectrum and the classifier's spectrum identifies a canonical perturbation scale, restoring reproducibility to SmoothGrad-squared.
- Aggregating attribution across noise scales (SpectralLens) and reporting the scale of maximal attribution (ArgLens) gives a more complete picture than any single hyperparameter setting.
Reading between the lines
- One testable extension is to use the band-pass view as a design tool: choosing a perturbation kernel whose spectrum matches a desired frequency band would let users deliberately expose high- or low-frequency features instead of searching noise scales by trial and error.
- The same spectral decomposition suggests that evaluation metrics themselves are frequency-filtered: patch-based pixel removal acts as a spatial low-pass filter, so current benchmarks may systematically favor explanations of a certain bandwidth; a fair comparison would need to control for this.
- If the linear-response assumption is relaxed, the band-pass picture likely becomes approximate; measuring how the explanation spectrum deviates from the predicted product at large noise scales could quantify when the formalism stops being predictive.
- ArgLens might serve as a per-pixel robustness diagnostic: since high-frequency decision-boundary components emerge late in training and are unstable, the scale of maximal attribution could indicate which pixels rely on fragile features.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a probabilistic and spectral framework for gradient-based explanation methods. It models explanations as expectations of (powers of) gradients over input perturbations, derives spectral identities for gradient and squared-gradient explainers, and argues that the gradient acts as a high-pass filter while the perturbation acts as a low-pass filter, so their combination produces a band-pass filter controlled by the perturbation scale. This is used to explain hyperparameter-induced inconsistencies in SmoothGrad/SmoothGrad-Squared, to propose an optimal perturbation scale via cosine similarity between the perturbation kernel and the classifier PSD, and to introduce an aggregation method called SpectralLens. The claims are evaluated with insertion/deletion scores on ImageNet and Food101 using ResNet-50 and ViT-B/16.
Significance. The framework is original and, if the spectral identities were correct, would give a useful formal vocabulary to a largely heuristic area. The non-squared identity E[∇f(x+ξ)] = ∇(f*℘) is exact under mild regularity, and the high-pass/low-pass separation is intuitive and well connected to known phenomena. The paper also provides code and a reproducible evaluation pipeline, which is a strength. However, the squared-gradient identity, which drives the band-pass claim, the Rashomon-effect proposition, and the optimal-scale proposal, is not established: the derivation in Appendix A.3 computes a different quantity from the pointwise expectation used by SmoothGrad-Squared. Until that mismatch is corrected, the theoretical contributions are conditional; the empirical results remain interesting but do not by themselves validate the spectral mechanism.
major comments (4)
- [§3.1 and Appendix A.3, Eq. (3)] Eq. (3) is derived in Appendix A.3 as ∫ |(f' * φ)|² dx, the total L2 energy of the gradient of the smoothed response. The explanation method defined in Sec. 2 is the pointwise expectation E[(∇f(x+ξ))²] at a fixed input x. These differ: E[(∇f(x+ξ))²] = (∇(f*φ)(x))² + Var(∇f(x+ξ)), and the spectral formula averages away the phase needed for pixel localization. For f(v)=sin(ω0v), the true SG2 attribution is ω0²/2, independent of σ, whereas Eq. (4) predicts e^{-σ²ω0²} attenuation. Thus Eq. (4) does not describe SmoothGrad-Squared as defined and used in Sec. 5. The band-pass interpretation, Proposition 1, and the optimal-scale criterion (Eq. (6)) all rest on Eq. (4), so this is load-bearing.
- [§3.3, Eq. (4) and Appendix A.1] The stated validity regime is in tension with the predicted σ-dependence. Appendix A.1 says the linear-response assumption is valid when the perturbation distribution is concentrated near the sample. In that regime ∇f(x+ξ) ≈ ∇f(x), so E[(∇f(x+ξ))²] ≈ (∇f(x))², independent of σ; the e^{-σ²ω²} factor in Eq. (4) vanishes. When σ is large enough for the gradient to vary appreciably, the convolution/linear-response model is no longer a controlled approximation. Since Sec. 5 and Appendix E apply Eq. (4) at noise scales where this concentration is strained, the experiments do not isolate this gap.
- [§3.3, Proposition 1 and Appendix B] The Rashomon-effect proof assumes equal total contribution across pixels and single-frequency per-pixel spectra. These are not properties of trained networks; the proof only exhibits a toy model. Together with the Eq. (3) issue, it does not support the text's claim that this explains inconsistencies 'encountered in SG2 explanations.' The proposition should either be reframed explicitly as a minimal existence example or be supplemented with a perturbation-stability argument around those assumptions.
- [§4.1, Eq. (6)] The proposed optimal scale maximizes the overlap between the Gaussian kernel PSD and the classifier's own PSD. This selects the frequency band where the classifier's spectral energy concentrates, not a scale that maximizes explanation faithfulness. Since the criterion is built on Eq. (3), which is not the correct SG2 expression, the theoretical basis for the standardized scale is missing. The empirical gains in Table 1 do not isolate this mechanism, because SG2_opt changes the σ selection relative to the baseline heuristic, and the comparisons do not vary σ while holding all else fixed.
minor comments (5)
- [§2] The notation φ_E(x̃) is used before the perturbation distribution and explainer are fully defined; please make the three components (distribution, explainer, summary statistic) explicit in the notation.
- [§4.1, Eqs. (7)-(8)] The computation of the kernel norm is terse. Please state the normalization convention explicitly and explain why the L1 norm of flattened squared gradients is used for the classifier term.
- [Fig. 4 caption] The phrase 'When using a Dirac explanation prior in Eq. (9), where a perturbation level is assigned per image or dataset' is confusing because Eq. (9) defines SpectralLens. Clarify the connection between the explanation prior and the similarity computation.
- [Appendix C] The translation of RISE and Occlusion Sensitivity into the framework omits random shifts and spatial dependencies. Please state explicitly that this is a simplification and discuss whether those details affect the derived PSD.
- [§5] The statement that CIFAR is omitted because its resolution restricts the potential gap between high- and low-frequency features is asserted without evidence. Either support it with a small experiment or soften the claim.
Circularity Check
Central spectral band-pass derivation is self-contained; one secondary 'optimal perturbation scale' result is definitional (in-sample fit to the classifier PSD) and contributes partial circularity.
-
self definitional
[Sec. 4.1, Eq. (6), Remark 6]
"Assuming unimodality, a nonzero contribution, and that the norm || |f̂|² ||₂ exists, then the cosine similarity is maximized at a certain perturbation scale that has the highest similarity with f. A higher cosine similarity guarantees recovering more information about the classifier."
Eq. (6) defines the 'optimal' scale as the maximizer of cosine similarity between the perturbation-kernel PSD and the classifier PSD. The squared-gradient explanation in Eq. (3) is precisely this inner product (up to normalization), so Proposition 5's claim that the maximizer 'guarantees recovering more information' is an identity by construction, not a derived consequence. The scale is then fit on the same images used for evaluation (Fig. 4/Tab. 1), making the recommended 'standard' an in-sample optimization of the very quantity it is said to maximize. This is a secondary remedy; the band-pass spectral analysis in Sec. 3 is independent of this step.
full rationale
The paper's main theoretical result — that gradient-based explanations act as high-pass filters and perturbation kernels as low-pass filters, forming a band-pass with scale-dependent mode — is derived from Fourier identities (derivative operator, convolution theorem, Plancherel/Wiener-Khinchin) under an explicitly stated linearity-of-response assumption (Appendix A.1). That assumption is a modeling premise, not an output of the derivation, and the paper flags its validity is coupled to perturbation concentration. The spectral representations (Eqs. (1)-(4)) are self-contained given that premise and are not circular. No load-bearing self-citation is present: the only author self-reference ([25]) is a forward-looking connection to double descent, not a justification of the main results. The one circular element is the proposed 'optimal perturbation scale' in Sec. 4.1: the optimality criterion is defined as the cosine similarity between the kernel PSD and the classifier PSD, which is exactly the quantity the squared-gradient explanation computes, and the scale is tuned/evaluated on the same datasets. This makes the optimal-scale recommendation definitional rather than independently predictive, but it does not infect the central band-pass derivation. Hence partial circularity, score 4.
Assumptions & free parameters
free parameters (3)
- Gaussian perturbation scale sigma (SmoothGrad/SG2) =
Per-image or per-dataset argmax of cosine similarity; heuristic 0.1-0.3 for baseline
- Maximum perturbation scale cutoff =
Set just before the anomalous predictive entropy trend (Appendix E.1)
- Explanation prior pi(sigma) for SpectralLens =
Uniform
assumptions (6)
- domain assumption Linearity of response: model output under perturbation can be written as a convolution (f * xi)(x) with the perturbation kernel.
- standard math Fourier transforms exist and Plancherel theorem applies to f and the kernels.
- domain assumption The cosine similarity objective is unimodal and the kernel norm exists, so a unique optimal perturbation scale exists.
- ad hoc to paper For Proposition 1 (Rashomon effect), all pixels contribute equally in total and each feature contributes at a single frequency.
- ad hoc to paper For Proposition 2 (sign of gradient), contributions are equal and even, with a specific spectral form.
- domain assumption The norm N_f stays constant when using a convex interpolation with noise.
Cite this review
Pith. "Pith review of On Spectral Properties of Gradient-based Explanation Methods." pith.science (2026). https://pith.science/paper/3CJWZY2T
@misc{pith2026250810595,
author = {Pith},
title = {Pith review of: On Spectral Properties of Gradient-based Explanation Methods},
year = {2026},
howpublished = {\url{https://pith.science/paper/3CJWZY2T}},
note = {Machine review of arXiv:2508.10595}
}
read the original abstract
Understanding the behavior of deep networks is crucial to increase our confidence in their results. Despite an extensive body of work for explaining their predictions, researchers have faced reliability issues, which can be attributed to insufficient formalism. In our research, we adopt novel probabilistic and spectral perspectives to formally analyze explanation methods. Our study reveals a pervasive spectral bias stemming from the use of gradient, and sheds light on some common design choices that have been discovered experimentally, in particular, the use of squared gradient and input perturbation. We further characterize how the choice of perturbation hyperparameters in explanation methods, such as SmoothGrad, can lead to inconsistent explanations and introduce two remedies based on our proposed formalism: (i) a mechanism to determine a standard perturbation scale, and (ii) an aggregation method which we call SpectralLens. Finally, we substantiate our theoretical results through quantitative evaluations.
Reference graph
Works this paper leans on
-
[1]
Food-101 – Mining Discriminative Components with Random Forests,https:// data.vision.ee.ethz.ch/cvl/datasets_extra/food-101/
-
[2]
03292, http://arxiv.org/abs/1810.03292, arXiv:1810.03292 [cs, stat]
Adebayo, J., Gilmer, J., Muelly, M., Goodfellow, I., Hardt, M., Kim, B.: Sanity Checks for Saliency Maps (Nov 2020).https://doi.org/10.48550/arXiv.1810. 03292, http://arxiv.org/abs/1810.03292, arXiv:1810.03292 [cs, stat]
-
[3]
Towards the Unification and Robustness of Perturbation and Gradient Based Explanations
Agarwal, S., Jabbari, S., Agarwal, C., Upadhyay, S., Wu, Z.S., Lakkaraju, H.: To- wards the Unification and Robustness of Perturbation and Gradient Based Ex- planations (Jul 2021). https://doi.org/10.48550/arXiv.2102.10618 , http: //arxiv.org/abs/2102.10618, arXiv:2102.10618 [cs]
work page Pith review arXiv doi:10.48550/arxiv.2102.10618 2021
-
[4]
Alvarez-Melis, D., Jaakkola, T.S.: On the Robustness of Interpretability Methods (Jun 2018). https://doi.org/10.48550/arXiv.1806.08049, http://arxiv.org/ abs/1806.08049, arXiv:1806.08049 [cs, stat]
-
[5]
Ancona, M., Ceolini, E., Öztireli, C., Gross, M.: Towards better understanding of gradient-based attribution methods for Deep Neural Networks (Mar 2018).https: //doi.org/10.48550/arXiv.1711.06104 , http://arxiv.org/abs/1711.06104 , arXiv:1711.06104 [cs, stat]
-
[6]
Arrieta, A.B., Díaz-Rodríguez, N., Del Ser, J., Bennetot, A., Tabik, S., Barbado, A., García, S., Gil-López, S., Molina, D., Benjamins, R., Chatila, R., Herrera, F.: Explainable Artificial Intelligence (XAI): Concepts, Taxonomies, Opportunities and Challenges toward Responsible AI (Dec 2019).https://doi.org/10.48550/ arXiv.1910.10045, http://arxiv.org/abs...
-
[7]
PLOS ONE10(7), e0130140 (Jul 2015).https://doi.org/10
Bach, S., Binder, A., Montavon, G., Klauschen, F., Müller, K.R., Samek, W.: On Pixel-Wise Explanations for Non-Linear Classifier Decisions by Layer-Wise Rele- vance Propagation. PLOS ONE10(7), e0130140 (Jul 2015).https://doi.org/10. 1371/journal.pone.0130140 , https://journals.plos.org/plosone/article? id=10.1371/journal.pone.0130140
-
[8]
Balduzzi, D., Frean, M., Leary, L., Lewis, J.P., Ma, K.W.D., McWilliams, B.: The Shattered Gradients Problem: If resnets are the answer, then what is the question? (Jun 2018). https://doi.org/10.48550/arXiv.1702.08591, http://arxiv.org/ abs/1702.08591, arXiv:1702.08591 [cs, stat]
Show all 62 references
- [9]
-
[10]
Mehrpanah et al
Basri, R., Galun, M., Geifman, A., Jacobs, D., Kasten, Y., Kritchman, S.: Fre- quency Bias in Neural Networks for Input of Non-Uniform Density (Mar 2020), https://api.semanticscholar.org/CorpusID:212644664 16 A. Mehrpanah et al
2020
-
[11]
2283–2292 (Jan 2022).https://doi.org/10.1109/ WACV51458.2022.00234, https://ieeexplore.ieee.org/document/9706795/
Benbarka,N.,Hofer,T.,Ul-MoqeetRiaz,H.,Zell,A.:SeeingImplicitNeuralRepre- sentationsasFourierSeries.2022IEEE/CVFWinterConferenceonApplicationsof Computer Vision (WACV) pp. 2283–2292 (Jan 2022).https://doi.org/10.1109/ WACV51458.2022.00234, https://ieeexplore.ieee.org/document/9706795/
2022
-
[12]
The Bell System Technical Jour- nal 37(1), 185–282 (Jan 1958)
Blackman, R.B., Tukey, J.W.: The measurement of power spectra from the point of view of communications engineering — Part I. The Bell System Technical Jour- nal 37(1), 185–282 (Jan 1958). https://doi.org/10.1002/j.1538-7305.1958. tb03874.x, http://ieeexplore.ieee.org/document/6768513/
1958
-
[13]
48550/arXiv.2304.12667, http://arxiv.org/abs/2304.12667, arXiv:2304.12667 [cs]
Brughmans, D., Melis, L., Martens, D.: Disagreement amongst counterfactual ex- planations: How transparency can be deceptive (Apr 2023).https://doi.org/10. 48550/arXiv.2304.12667, http://arxiv.org/abs/2304.12667, arXiv:2304.12667 [cs]
- [14]
-
[15]
In: Proceedings of the Thirtieth International Joint Conference on Artificial Intelligence
Cao, Y., Fang, Z., Wu, Y., Zhou, D.X., Gu, Q.: Towards Understanding the Spec- tral Bias of Deep Learning. In: Proceedings of the Thirtieth International Joint Conference on Artificial Intelligence. pp. 2205–2211. International Joint Confer- ences on Artificial Intelligence Or...
2021 doi
-
[16]
https://doi.org/10.48550/arXiv.2006.16234 , http: //arxiv.org/abs/2006.16234, arXiv:2006.16234 [cs, stat]
Chen, H., Janizek, J.D., Lundberg, S., Lee, S.I.: True to the Model or True to the Data? (Jun 2020). https://doi.org/10.48550/arXiv.2006.16234 , http: //arxiv.org/abs/2006.16234, arXiv:2006.16234 [cs, stat]
-
[17]
https: //doi.org/10.48550/arXiv.1802.07814 , http://arxiv.org/abs/1802.07814 , arXiv:1802.07814 [cs, stat]
Chen, J., Song, L., Wainwright, M.J., Jordan, M.I.: Learning to Explain: An Information-Theoretic Perspective on Model Interpretation (Jun 2018). https: //doi.org/10.48550/arXiv.1802.07814 , http://arxiv.org/abs/1802.07814 , arXiv:1802.07814 [cs, stat]
-
[18]
In: Proceedings of the 1998 IEEE International Conference on Acoustics, Speech and Signal Pro- cessing, ICASSP’98 (Cat
Cohen, L.: The generalization of the Wiener-Khinchin theorem. In: Proceedings of the 1998 IEEE International Conference on Acoustics, Speech and Signal Pro- cessing, ICASSP’98 (Cat. No. 98CH36181). vol. 3, pp. 1577–1580. IEEE (1998), https://ieeexplore.ieee.org/abstract/docume...
1998
- [19]
-
[20]
In: 2009 IEEE Conference on Computer Vision and Pattern Recognition
Deng, J., Dong, W., Socher, R., Li, L.J., Li, K., Fei-Fei, L.: ImageNet: A large- scale hierarchical image database. In: 2009 IEEE Conference on Computer Vision and Pattern Recognition. pp. 248–255 (Jun 2009). https://doi.org/10.1109/ CVPR.2009.5206848, https://ieeexplore.ieee...
2009
-
[21]
https://doi.org/10.48550/arXiv.2010.11929, http://arxiv.org/ abs/2010.11929, arXiv:2010.11929 [cs]
Dosovitskiy, A., Beyer, L., Kolesnikov, A., Weissenborn, D., Zhai, X., Unterthiner, T., Dehghani, M., Minderer, M., Heigold, G., Gelly, S., Uszkoreit, J., Houlsby, N.: An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale (Jun 2021). https://doi.org/10.485...
-
[22]
1910.08485, http://arxiv.org/abs/1910.08485, arXiv:1910.08485 [cs, stat] Spectral Properties of Gradient-based Explanation Methods 17
Fong, R., Patrick, M., Vedaldi, A.: Understanding Deep Networks via Extremal Perturbations and Smooth Masks (Oct 2019).https://doi.org/10.48550/arXiv. 1910.08485, http://arxiv.org/abs/1910.08485, arXiv:1910.08485 [cs, stat] Spectral Properties of Gradient-based Explanation Methods 17
-
[23]
In: 2017 IEEE International Conference on Computer Vision (ICCV)
Fong, R., Vedaldi, A.: Interpretable Explanations of Black Boxes by Meaning- ful Perturbation. In: 2017 IEEE International Conference on Computer Vision (ICCV). pp. 3449–3457 (Oct 2017).https://doi.org/10.1109/ICCV.2017.371 , http://arxiv.org/abs/1704.03296, arXiv:1704.03296 [...
2017 arXiv
- [24]
- [25]
-
[26]
https://doi.org/10.48550/arXiv.2206.01254 , http://arxiv.org/abs/ 2206.01254, arXiv:2206.01254 [cs]
Han, T., Srinivas, S., Lakkaraju, H.: Which Explanation Should I Choose? A Func- tion Approximation Perspective to Characterizing Post Hoc Explanations (Dec 2022). https://doi.org/10.48550/arXiv.2206.01254 , http://arxiv.org/abs/ 2206.01254, arXiv:2206.01254 [cs]
-
[27]
https://doi.org/10.48550/arXiv.2206.08204 , http: //arxiv.org/abs/2206.08204, arXiv:2206.08204 [cs]
Harel, N., Gilad-Bachrach, R., Obolski, U.: Inherent Inconsistencies of Feature Importance (Jun 2022). https://doi.org/10.48550/arXiv.2206.08204 , http: //arxiv.org/abs/2206.08204, arXiv:2206.08204 [cs]
-
[28]
https://doi.org/10.48550/arXiv.1512.03385, http://arxiv.org/ abs/1512.03385, arXiv:1512.03385 [cs]
He, K., Zhang, X., Ren, S., Sun, J.: Deep Residual Learning for Image Recognition (Dec 2015). https://doi.org/10.48550/arXiv.1512.03385, http://arxiv.org/ abs/1512.03385, arXiv:1512.03385 [cs]
- [29]
- [30]
-
[31]
In: 2007 IEEE Conference on Computer Vision and Pattern Recognition
Hou, X., Zhang, L.: Saliency Detection: A Spectral Residual Approach. In: 2007 IEEE Conference on Computer Vision and Pattern Recognition. pp. 1–8 (Jun 2007). https://doi.org/10.1109/CVPR.2007.383267 , https://ieeexplore. ieee.org/document/4270292, iSSN: 1063-6919
2007
- [32]
- [33]
- [34]
-
[35]
https://doi.org/10.48550/arXiv.2211.12857 , http://arxiv.org/abs/2211
Kolek, S., Windesheim, R., Loarca, H.A., Kutyniok, G., Levie, R.: Explaining Image Classifiers with Multiscale Directional Image Representation (Apr 2023). https://doi.org/10.48550/arXiv.2211.12857 , http://arxiv.org/abs/2211. 12857, arXiv:2211.12857 [cs]
-
[36]
https://doi.org/10.48550/arXiv.2202.01602 , http: //arxiv.org/abs/2202.01602, arXiv:2202.01602 [cs] 18 A
Krishna, S., Han, T., Gu, A., Pombra, J., Jabbari, S., Wu, S., Lakkaraju, H.: The Disagreement Problem in Explainable Machine Learning: A Practitioner’s Perspective (Feb 2022). https://doi.org/10.48550/arXiv.2202.01602 , http: //arxiv.org/abs/2202.01602, arXiv:2202.01602 [cs] ...
-
[37]
Advances in neural information processing systems30 (2017)
Lundberg, S.M., Lee, S.I.: A unified approach to interpreting model predictions. Advances in neural information processing systems30 (2017)
2017
-
[38]
In: Marmarelis, P.Z., Marmarelis, V.Z
Marmarelis, P.Z., Marmarelis, V.Z.: The White-Noise Method in System Iden- tification. In: Marmarelis, P.Z., Marmarelis, V.Z. (eds.) Analysis of Physiologi- cal Systems: The White-Noise Approach, pp. 131–180. Computers in Biology and Medicine, Springer US, Boston, MA (1978).ht...
1978 doi
-
[39]
Proceedings of the AAAI Conference on Artificial Intelligence36(11), 12342–12350 (Jun 2022)
Marques-Silva, J., Ignatiev, A.: Delivering Trustworthy AI through Formal XAI. Proceedings of the AAAI Conference on Artificial Intelligence36(11), 12342–12350 (Jun 2022). https://doi.org/10.1609/aaai.v36i11.21499, https://ojs.aaai. org/index.php/AAAI/article/view/21499
2022 doi
-
[40]
In: Proceedings of The 26th International Conference on Artificial Intelligence and Statistics
Marx, C., Park, Y., Hasson, H., Wang, Y., Ermon, S., Huan, L.: But Are You Sure? An Uncertainty-Aware Perspective on Explainable AI. In: Proceedings of The 26th International Conference on Artificial Intelligence and Statistics. pp. 7375–7391. PMLR (Apr 2023),https://proceedin...
2023
- [41]
- [42]
- [43]
-
[44]
WIT Press (2011), google-Books-ID: k_rdcKaUdr4C
Rahman, M.: Applications of Fourier Transforms to Generalized Functions. WIT Press (2011), google-Books-ID: k_rdcKaUdr4C
2011
-
[45]
In: Escalante, H.J., Escalera, S., Guyon, I., Baró, X., Güçlütürk, Y., Güçlü, U., van Gerven, M
Ras, G., van Gerven, M., Haselager, P.: Explanation Methods in Deep Learn- ing: Users, Values, Concerns and Challenges. In: Escalante, H.J., Escalera, S., Guyon, I., Baró, X., Güçlütürk, Y., Güçlü, U., van Gerven, M. (eds.) Explainable and Interpretable Models in Computer Visi...
2018 doi
-
[46]
Oxford University Press (Nov 2000)
Reiter, H., Stegeman, J.D.: Classical Harmonic Analysis and Locally Compact Groups. Oxford University Press (Nov 2000). https://doi.org/10.1093/oso/ 9780198511892.001.0001, https://academic.oup.com/book/54460
2000 doi
- [47]
-
[48]
https: //doi.org/10.48550/arXiv.2202.00449 , http://arxiv.org/abs/2202.00449 , arXiv:2202.00449 [cs]
Rong, Y., Leemann, T., Borisov, V., Kasneci, G., Kasneci, E.: A Consistent and Efficient Evaluation Strategy for Attribution Methods (Jun 2022). https: //doi.org/10.48550/arXiv.2202.00449 , http://arxiv.org/abs/2202.00449 , arXiv:2202.00449 [cs]
-
[49]
Nature Machine Intelligence1(5), 206–215 (May 2019)
Rudin, C.: Stop explaining black box machine learning models for high stakes decisions and use interpretable models instead. Nature Machine Intelligence1(5), 206–215 (May 2019). https://doi.org/10.1038/s42256- 019- 0048- x , https: //www.nature.com/articles/s42256-019-0048-x
2019 doi
-
[50]
McGraw-Hill (1976), google- Books-ID: kwqzPAAACAAJ Spectral Properties of Gradient-based Explanation Methods 19
Rudin, W.: Principles of Mathematical Analysis. McGraw-Hill (1976), google- Books-ID: kwqzPAAACAAJ Spectral Properties of Gradient-based Explanation Methods 19
1976
-
[51]
International Journal of Computer Vision 128(2), 336–359 (Feb 2020)
Selvaraju, R.R., Cogswell, M., Das, A., Vedantam, R., Parikh, D., Batra, D.: Grad- CAM: Visual Explanations from Deep Networks via Gradient-based Localization. International Journal of Computer Vision 128(2), 336–359 (Feb 2020). https: //doi.org/10.1007/s11263-019-01228-7 , ht...
2020 arXiv
-
[52]
In: Serov, V
Serov, V.: The Riemann–Lebesgue Lemma. In: Serov, V. (ed.) Fourier Series, Fourier Transform and Their Applications to Mathematical Physics, pp. 33–35. Applied Mathematical Sciences, Springer International Publishing, Cham (2017). https://doi.org/10.1007/978-3-319-65262-7_6 , ...
2017 doi
-
[53]
https://doi.org/10.48550/arXiv.1605.01713 , http://arxiv.org/abs/ 1605.01713, arXiv:1605.01713 [cs]
Shrikumar, A., Greenside, P., Shcherbina, A., Kundaje, A.: Not Just a Black Box: Learning Important Features Through Propagating Activation Differences (Apr 2017). https://doi.org/10.48550/arXiv.1605.01713 , http://arxiv.org/abs/ 1605.01713, arXiv:1605.01713 [cs]
- [54]
- [55]
-
[56]
Stoica, P., Moses, R.L.: Spectral analysis of signals, vol. 452. Pearson Prentice Hall Upper Saddle River, NJ (2005),http://user.it.uu.se/~ps/SAS-new.pdf
2005
-
[57]
https://doi.org/10.48550/arXiv.1703.01365, http://arxiv.org/ abs/1703.01365, arXiv:1703.01365 [cs]
Sundararajan, M., Taly, A., Yan, Q.: Axiomatic Attribution for Deep Networks (Jun 2017). https://doi.org/10.48550/arXiv.1703.01365, http://arxiv.org/ abs/1703.01365, arXiv:1703.01365 [cs]
-
[58]
ArXiv (Jun 2020), https://api.semanticscholar.org/CorpusID:219791950
Tancik, M., Srinivasan, P.P., Mildenhall, B., Fridovich-Keil, S., Raghavan, N., Singhal, U., Ramamoorthi, R., Barron, J., Ng, R.: Fourier Features Let Networks Learn High Frequency Functions in Low Dimensional Domains. ArXiv (Jun 2020), https://api.semanticscholar.org/CorpusID...
2020
-
[59]
https://doi.org/10.48550/arXiv.2105.10118 , http://arxiv.org/abs/ 2105.10118, arXiv:2105.10118 [cs]
Wang, E., Khosravi, P., Broeck, G.V.d.: Probabilistic Sufficient Explanations (May 2021). https://doi.org/10.48550/arXiv.2105.10118 , http://arxiv.org/abs/ 2105.10118, arXiv:2105.10118 [cs]
-
[60]
Why Not Other Classes?
Wang, Y., Wang, X.: “Why Not Other Classes?”: Towards Class-Contrastive Back- PropagationExplanations.AdvancesinNeuralInformationProcessingSystems 35, 9085–9097 (Dec 2022), https://proceedings.neurips.cc/paper_files/paper/ 2022/hash/3b7a66b2d1258e892c89f485b8f896e0-Abstract-Co...
2022
-
[61]
48550/arXiv.2306.01464, http://arxiv.org/abs/2306.01464, arXiv:2306.01464 [cs, stat]
Wilming, R., Kieslich, L., Clark, B., Haufe, S.: Theoretical Behavior of XAI Meth- ods in the Presence of Suppressor Variables (Jun 2023).https://doi.org/10. 48550/arXiv.2306.01464, http://arxiv.org/abs/2306.01464, arXiv:2306.01464 [cs, stat]
-
[62]
perturbation kernel
Zeiler, M.D., Fergus, R.: Visualizing and Understanding Convolutional Networks (Nov 2013). https://doi.org/10.48550/arXiv.1311.2901 , http://arxiv.org/ abs/1311.2901, arXiv:1311.2901 [cs] 20 A. Mehrpanah et al. A A Spectral Representation of Explanations In this section, we de...
Reviewed August 5, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.