Pith. sign in

REVIEW 3 major objections 4 minor 60 references

OMENN: One Matrix to Explain Neural Networks

T0 review · 3 major / 4 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read This paper claims that a neural network can be collapsed into a single matrix per input whose entries sum exactly to the model's output logit.

desk verdict OMENN's exact completeness for smooth activations is real and worth knowing, but the empirical paper as written overclaims and hides a VGG failure in the supplementary. read the letter →

arxiv 2412.02399 v1 pith:KR2XH2QL submitted 2024-12-03 cs.LG cs.AIcs.CV

classification cs.LGcs.AIcs.CV
keywords explainableAIattributionmethodsdynamiclinearityneuralnetworkinterpretabilityVisionTransformerconvolutionalcompletenesspropertypost-hocexplanation
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper introduces OMENN (One Matrix to Explain Neural Networks), a post-hoc method that represents a trained neural network as a single matrix for each input. The authors show that every layer of a Vision Transformer or CNN—convolutions, attention, normalization, residual connections, and GELU or SWISH activations—can be rewritten as an input-dependent affine transformation. Composing these transformations collapses the whole network into one matrix, and the paper's central claim is that the sum of all entries in the explanation matrix equals the network's output logit for the explained class. This exact completeness, if it holds, would make OMENN's pixel attributions faithful by construction rather than approximate, and it would apply to already-trained models without retraining or architectural changes. The authors also report benchmark results on FunnyBirds and a faithfulness metric where OMENN is competitive with or exceeds existing attribution methods.

What carries the argument

The key machinery is dynamic linearity: each layer $l_i(x)=W_i(x)x + b_i(x)$ acts as an affine transformation whose parameters depend on the input. The paper establishes this form for fully-connected layers, convolutions via doubly block-Toeplitz matrices and im2col, normalization, residual connections, multi-head self-attention, and dynamic activations such as GELU and SWISH, which factor as $\phi(x)=x\,\xi(x)$ and become diagonal linear maps. To absorb additive biases, the input is augmented with an extra channel of ones and layer parameters are merged into augmented matrices, so that a whole network collapses into a single matrix $\tilde{\Omega}_w$. The explanation matrix $C$ is the Hadamard-product decomposition of that collapse, and equation (27) states that its entries sum exactly to the network output, which is the completeness property that carries the method's claims of exactness.

What would settle it

Evaluate OMENN on the reported benchmarks using the raw matrix before post-processing; if the raw version scores no better than the gradient baseline, the completeness property does not carry the empirical results.

Watch

Extended reading notes

Core claim

The central discovery is that a broad class of modern networks can be exactly re-expressed as one input-dependent affine map, yielding an attribution matrix whose entries sum to the output. The construction augments the input with a constant channel of ones so that biases become part of a combined weight matrix, then multiplies the per-layer linear maps together. For the explanation matrix $C$ defined as $C = \sum_d (C_w \odot X)[:,d] + C_b$, with $C_w$ the input-multiplying part and $C_b$ the bias part, the identity $\sum C = f(x)$ holds. The paper contrasts this with gradient-based saliency, which assigns zero contribution to a GELU input at $x=-0.75$ even though the function value is $-0.17$, while OMENN's local linear coefficient captures that contribution exactly.

Load-bearing premise

The paper's reported benchmarks treat the post-processed explanation maps as OMENN, even though the post-processing steps (dropping negative entries, quantile clipping, smoothing) break the exact sum-to-logit equality that the method's completeness guarantee depends on.

Editorial extensions

If this is right

  • OMENN can be applied to pre-trained ViTs and CNNs without any retraining or architecture change, unlike B-Cos or QSENN, which require modifying the model.
  • For piecewise-linear activations such as ReLU, OMENN's explanation coincides with image times gradient; for GELU and SWISH it departs from the gradient, correcting cases where the gradient is zero despite a nonzero contribution.
  • The exact sum-to-logit property provides a built-in consistency check: any explanation that does not sum to the logit can be identified immediately, and the raw OMENN matrix can serve as ground truth for evaluating other attribution methods.
  • On the FunnyBirds benchmark, OMENN achieves the highest mean score on ViT-B/16 and VGG-16 among the compared methods, and on the Quantus faithfulness metric it roughly doubles the score of the second-best method for ViT-B/16.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Because the raw matrix preserves exact completeness while the post-processed maps do not, a natural extension is to evaluate whether the reported benchmark gains survive when using the raw matrix; this would separate the value of the exact decomposition from the value of the smoothing step.
  • The same dynamic-linearity collapse should extend to other architectures built from GELU/SWISH and attention, such as transformer decoders or hybrid models; testing OMENN on a text or audio model would check whether the proof's assumptions travel beyond vision.
  • The paper's completeness identity suggests a new diagnostic: the difference between the raw OMENN sum and a post-processed map's sum measures how much information the visualization pipeline discards, which could guide the design of explanation displays that preserve faithfulness.
  • Another testable extension is to use the OMENN matrix directly in perturbation-based faithfulness evaluations, since the raw matrix gives exact per-pixel contributions; comparing raw versus smoothed maps on existing benchmarks would quantify the cost of interpretability post-processing.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 4 minor

Summary. The paper introduces OMENN, a post-hoc attribution method that represents a neural network as a single input-dependent matrix for a given input, based on the 'dynamic linearity' property that each layer can be expressed as an affine or input-dependent affine transformation. The authors derive how fully-connected, convolutional, normalization, attention, and activation layers (including GELU and SWISH) can be reformulated, and show that the resulting explanation matrix C satisfies the completeness property sum(C) = f(x) (Eq. 27). The method is evaluated on the FunnyBirds and Quantus faithfulness benchmarks with ViT and CNN backbones, where the authors claim competitive or superior performance. The theoretical derivations in Sections 3.2-3.5 are mathematically sound for the listed layers, and the completeness identity is a clean contribution. However, the paper suffers from a major ambiguity about whether the reported experiments use the raw matrix or the post-processed version described in Section 4, and the main text's claim of consistent outperformance is contradicted by the supplementary VGG-16 faithfulness table.

Significance. If the exactness and completeness properties are taken as the core contribution, OMENN offers a principled way to obtain pixel-level attributions that exactly reconstruct the logit for modern architectures with smooth activations. The derivation is clear and the completeness property is a rigorous, parameter-free guarantee for the raw matrix. This distinguishes OMENN from heuristic gradient-based methods and provides a potential tool for exact decomposition in ViTs. The authors also correctly identify the limitations of gradient-based attributions at near-stationary points. However, the empirical evaluation does not currently establish that the proposed method, as actually used, retains these guarantees: the post-processing steps in Section 4 break the completeness identity, and the benchmark numbers may reflect a different pipeline than the theoretical object. The missing comparison with FullGrad, the closest related exact method, is a significant gap. Thus the theoretical contribution is promising but the empirical evidence, as presented, is not yet convincing.

major comments (3)
  1. [Section 4, Efficient Implementation; Eq. (27)] The paper claims a completeness property sum(C) = f(x) for the explanation matrix C, but Section 4 states that, after computing C, the authors 'disregard all elements with negative contributions' and apply 'quantile-based outlier removal and smoothing using a mean filter.' These operations change the matrix, so the post-processed map no longer satisfies Eq. (27). The manuscript never states whether the reported FunnyBirds results (Table 3, Figure 4) and faithfulness scores (Tables 1-2) use the raw matrix or the post-processed one, nor does it report the quantile threshold and filter kernel. If the evaluations use the post-processed maps, then the empirical validation is of 'OMENN + clipping + smoothing', not of the exact decomposition that is the paper's central theoretical contribution. The authors must report raw and post-processed results separately and provide the post-processing hyperparameters, or modify the method to preserve completeness under post-processing (e.g., by redistributing discarded contributions). Without this, the connection between theory and experiments is unsubstantiated.
  2. [Section 5, Comparison of Faithfulness; Supplementary Table 2] The main text states that OMENN 'consistently outperforms all competing approaches' on the faithfulness benchmark, based on the ViT-B/16 results in Table 1. However, the supplementary Table 2 for VGG-16 reports an OMENN faithfulness score of 0.023 ± 0.003, which is lower than GradCAM (0.065), LRP (0.057), and Integrated Gradients (0.045). The main text only remarks that 'results for convolutional model are provided in the Supplementary Materials,' without acknowledging that the reported numbers are not superior for VGG-16. This is a direct contradiction of the 'consistently outperforms' claim. The authors should either revise the claim to make it backbone-specific, or provide a discussion explaining the VGG-16 result and what it implies for the applicability of OMENN.
  3. [Sections 2 and 5; related work [53]] The paper motivates OMENN partly by contrast with FullGrad (Gradient NN Representation, cited as [53]), which provides an exact gradient+bias explanation but is restricted to ReLU/LeakyReLU networks. FullGrad is the most closely related method to OMENN, and it is directly applicable to the VGG-16 and ResNet-50 backbones used in the FunnyBirds and faithfulness experiments. Yet FullGrad is not included in any benchmark comparison (Tables 1-3, Figure 4). Without comparing to FullGrad, the claimed advantage of OMENN — extension to smooth activations while maintaining exactness — is not empirically tested. The authors should either include FullGrad in the evaluations or explicitly justify its absence.
minor comments (4)
  1. [Section 4] The post-processing hyperparameters (quantile cutoff, mean filter size) are not reported anywhere in the manuscript or supplementary material. Please specify these values, as the benchmark results depend on them.
  2. [Supplementary, Figure 9 caption] The word 'tremnedous' in the caption should be 'tremendous'.
  3. [Section 3.2] There is a typo: 'SWISH (Self-Gated Activation Funstion)' should be 'Self-Gated Activation Function'.
  4. [Section 3.6] The paper uses 'exact' and 'precise' to describe OMENN, but the post-processing in Section 4 breaks the exactness of the raw matrix. It would be clearer to explicitly state that the theoretical exactness applies only to the raw decomposition, and that the reported qualitative and quantitative results may use a modified map.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the completeness identity is derived from the network's own weights by an explicit algebraic construction, with no fitted parameters or load-bearing self-citation.

full rationale

The derivation chain in OMENN is an explicit algebraic construction: each layer is rewritten as an input-dependent affine map (Eqs. 4, 11, 14, 16), the composition is collapsed to a single matrix product (Eqs. 17-19), biases are folded into an augmented input with a channel of ones (Eqs. 20-23), and the final completeness statement sum(C) = f(x) (Eq. 27) follows by direct substitution from Eq. 26 and Eq. 24. No parameter is fitted to any benchmark; the equality is exact by construction and does not import any result from the authors' prior work. The related-work citations to prototype papers by the same group (Refs. 43, 48, 49) are contextual and not load-bearing for the OMENN derivation. The only notable gap is that Section 4's post-processing (negative-value suppression, quantile outlier removal, mean filtering) breaks Eq. 27, and the paper does not state whether benchmark tables report raw or processed OMENN maps; this is an evaluation-transparency issue rather than circular reasoning, so it does not raise the circularity score.

Assumptions & free parameters 3 free parameters · 4 assumptions · 0 invented entities

The method has no learned parameters, but it relies on a domain assumption about layer expressibility and an ad hoc choice for smooth activations. The post-processing hyperparameters are unquantified and could be tuned to benchmarks.

free parameters (3)
  • post-processing quantile threshold = not specified
    Section 4: quantile-based outlier removal; threshold value not given and may be tuned to benchmarks.
  • mean filter size = not specified
    Section 4: smoothing using a mean filter; kernel size not given.
  • negative contribution policy = all negative contributions set to zero
    Section 4: 'we disregard all elements with negative contributions'; this is an ad hoc binary filter that breaks the completeness sum.
assumptions (4)
  • domain assumption Every layer in the target networks can be expressed as an affine or input-dependent affine transformation (Eq. 4).
    Section 3.1 assumes this and gives examples for fully-connected, attention, activations, normalization, convolution, residual connections. It is not proved for all possible layers, e.g., max-pooling or custom ops.
  • ad hoc to paper For GELU/SWISH, the identity phi(x)=x*xi(x) with xi(x)=Phi(x) or sigma(x) is the appropriate contribution decomposition.
    Section 3.2 defines dynamic linear activation functions with this multiplier; there are infinitely many such decompositions, and the paper gives no criterion selecting this one.
  • standard math The Kronecker product identities (Eqs. 6-9) hold for the used dimensions.
    Used in fully-connected and attention vectorization; standard linear algebra.
  • domain assumption The augmented channel of ones propagates through all layers, including convolution with zero padding, without changing the output (Eqs. 20-22).
    Supplementary section 'Combining parameters' defines how the ones channel is carried through convolution (with the K_bi kernel and normalization by s_i), attention, and activations. This requires careful bookkeeping and is not automatically true for all padding/stride choices.

how reviews work

0 comments
Cite this review

Pith. "Pith review of OMENN: One Matrix to Explain Neural Networks." pith.science (2026). https://pith.science/paper/KR2XH2QL

@misc{pith2026241202399,
  author       = {Pith},
  title        = {Pith review of: OMENN: One Matrix to Explain Neural Networks},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/KR2XH2QL}},
  note         = {Machine review of arXiv:2412.02399}
}
read the original abstract

Deep Learning (DL) models are often black boxes, making their decision-making processes difficult to interpret. This lack of transparency has driven advancements in eXplainable Artificial Intelligence (XAI), a field dedicated to clarifying the reasoning behind DL model predictions. Among these, attribution-based methods such as LRP and GradCAM are widely used, though they rely on approximations that can be imprecise. To address these limitations, we introduce One Matrix to Explain Neural Networks (OMENN), a novel post-hoc method that represents a neural network as a single, interpretable matrix for each specific input. This matrix is constructed through a series of linear transformations that represent the processing of the input by each successive layer in the neural network. As a result, OMENN provides locally precise, attribution-based explanations of the input across various modern models, including ViTs and CNNs. We present a theoretical analysis of OMENN based on dynamic linearity property and validate its effectiveness with extensive tests on two XAI benchmarks, demonstrating that OMENN is competitive with state-of-the-art methods.

Figures

Figures reproduced from arXiv: 2412.02399 by the authors.

Figure 1
Figure 1. This figure illustrates OMENN, a novel XAI method [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. OMENN method provides an explanation in the form of a single matrix, [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. An example highlighting the difference between our [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: Results on the FunnyBirds benchmark for the ViT-B/16 backbone show that OMENN achieves the highest score among various explainability methods. Notably, Chefer LRP ranks as the second-best approach, with only a marginal difference from OMENN, indicating that these metho…
Figure 5
Figure 5. Figure 5: Examples of explanations generated by various XAI [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 8
Figure 8. Figure 8: Examples of explanations generated by various XAI [PITH_FULL_IMAGE:figures/full_fig_p015_8.png]
Figure 6
Figure 6. Figure 6: Examples of explanations generated by various XAI [PITH_FULL_IMAGE:figures/full_fig_p015_6.png]
Figure 7
Figure 7. Figure 7: Examples of explanations generated by various XAI [PITH_FULL_IMAGE:figures/full_fig_p015_7.png]
Figure 9
Figure 9. Figure 9: Results of OMENN on FunnyBirds framework using CNN backbones, VGG16 and ResNet50. OMENN surpasses all other XAI [PITH_FULL_IMAGE:figures/full_fig_p016_9.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

60 extracted references · 36 canonical work pages

  1. [53]

    Full-gradient represen- tation for neural network visualization

    Suraj Srinivas and Franc ¸ois Fleuret. Full-gradient represen- tation for neural network visualization. Advances in neural information processing systems, 32, 2019. 2

  2. [1]

    Survey on explainable ai: techniques, challenges and open issues

    Adel Abusitta, Miles Q Li, and Benjamin CM Fung. Survey on explainable ai: techniques, challenges and open issues. Expert Systems with Applications, 255:124710, 2024. 1, 2

  3. [2]

    Sanity checks for saliency maps

    Julius Adebayo, Justin Gilmer, Michael Muelly, Ian Good- fellow, Moritz Hardt, and Been Kim. Sanity checks for saliency maps. Advances in neural information processing systems, 31, 2018. 1, 2

  4. [3]

    Towards robust interpretability with self-explaining neural networks

    David Alvarez Melis and Tommi Jaakkola. Towards robust interpretability with self-explaining neural networks. Ad- vances in neural information processing systems , 31, 2018. 2

  5. [4]

    Diffusion visual counterfactual explana- tions

    Maximilian Augustin, Valentyn Boreiko, Francesco Croce, and Matthias Hein. Diffusion visual counterfactual explana- tions. Advances in Neural Information Processing Systems , 35:364–377, 2022. 2 8

  6. [5]

    On pixel-wise explanations for non-linear classifier decisions by layer-wise relevance propagation

    Sebastian Bach, Alexander Binder, Gr ´egoire Montavon, Frederick Klauschen, Klaus-Robert M ¨uller, and Wojciech Samek. On pixel-wise explanations for non-linear classifier decisions by layer-wise relevance propagation. PloS one, 10 (7):e0130140, 2015. 1, 2

  7. [6]

    Umang Bhatt, Adrian Weller, and Jos ´e M. F. Moura. Evalu- ating and aggregating feature-based model explanations. In Proceedings of the Twenty-Ninth International Joint Confer- ence on Artificial Intelligence, 2021. 6, 7, 4

  8. [7]

    Shortcomings of top-down randomization-based sanity checks for evaluations of deep neural network ex- planations

    Alexander Binder, Leander Weber, Sebastian Lapuschkin, Gr´egoire Montavon, Klaus-Robert M ¨uller, and Wojciech Samek. Shortcomings of top-down randomization-based sanity checks for evaluations of deep neural network ex- planations. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 16143– 16152, 2023. 2

Show all 60 references
  1. [8]

    B-cos net- works: Alignment is all we need for interpretability

    Moritz B ¨ohle, Mario Fritz, and Bernt Schiele. B-cos net- works: Alignment is all we need for interpretability. In Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 10329–10338, 2022. 2

  2. [9]

    B-cos alignment for inherently interpretable cnns and vision transformers

    Moritz B ¨ohle, Navdeeppal Singh, Mario Fritz, and Bernt Schiele. B-cos alignment for inherently interpretable cnns and vision transformers. IEEE Transactions on Pattern Anal- ysis and Machine Intelligence, 2024. 2

  3. [10]

    Grad-cam++: General- ized gradient-based visual explanations for deep convolu- tional networks

    Aditya Chattopadhay, Anirban Sarkar, Prantik Howlader, and Vineeth N Balasubramanian. Grad-cam++: General- ized gradient-based visual explanations for deep convolu- tional networks. In 2018 IEEE winter conference on appli- cations of computer vision (WACV) , pages 839–847. IEEE,

  4. [11]

    Transformer inter- pretability beyond attention visualization

    Hila Chefer, Shir Gur, and Lior Wolf. Transformer inter- pretability beyond attention visualization. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 782–791, 2021. 2

  5. [12]

    This looks like that: deep learn- ing for interpretable image recognition

    Chaofan Chen, Oscar Li, Daniel Tao, Alina Barnett, Cynthia Rudin, and Jonathan K Su. This looks like that: deep learn- ing for interpretable image recognition. Advances in neural information processing systems, 32, 2019. 2

  6. [13]

    Imagenet: A large-scale hierarchical image database

    Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pages 248–255. Ieee, 2009. 6

  7. [14]

    Learning without mem- orizing

    Prithviraj Dhar, Rajat Vikram Singh, Kuan-Chuan Peng, Ziyan Wu, and Rama Chellappa. Learning without mem- orizing. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 5138–5146,

  8. [15]

    An image is worth 16x16 words: Transformers for image recognition at scale, 2021

    Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Syl- vain Gelly, Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image recognition ...

  9. [16]

    Don’t lie to me! robust and efficient explainabil- ity with verified perturbation analysis

    Thomas Fel, M ´elanie Ducoffe, David Vigouroux, R ´emi Cad`ene, Mikael Capelle, Claire Nicod `eme, and Thomas Serre. Don’t lie to me! robust and efficient explainabil- ity with verified perturbation analysis. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pat...

  10. [17]

    Interpretable explana- tions of black boxes by meaningful perturbation

    Ruth C Fong and Andrea Vedaldi. Interpretable explana- tions of black boxes by meaningful perturbation. In Pro- ceedings of the IEEE international conference on computer vision, pages 3429–3437, 2017. 2

  11. [18]

    This looks more like that: Enhancing self-explaining models by prototypical rele- vance propagation

    Srishti Gautam, Marina M-C H ¨ohne, Stine Hansen, Robert Jenssen, and Michael Kampffmeyer. This looks more like that: Enhancing self-explaining models by prototypical rele- vance propagation. Pattern Recognition, 136:109172, 2023. 2

  12. [19]

    Towards automatic concept-based explanations

    Amirata Ghorbani, James Wexler, James Y Zou, and Been Kim. Towards automatic concept-based explanations. Ad- vances in neural information processing systems , 32, 2019. 2

  13. [20]

    Counterfactual visual explanations

    Yash Goyal, Ziyan Wu, Jan Ernst, Dhruv Batra, Devi Parikh, and Stefan Lee. Counterfactual visual explanations. In In- ternational Conference on Machine Learning , pages 2376–

  14. [21]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceed- ings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016. 3

  15. [22]

    Quantus: An explain- able ai toolkit for responsible evaluation of neural network explanations and beyond

    Anna Hedstr ¨om, Leander Weber, Daniel Krakowczyk, Dil- yara Bareeva, Franz Motzkus, Wojciech Samek, Sebastian Lapuschkin, and Marina M-C H¨ohne. Quantus: An explain- able ai toolkit for responsible evaluation of neural network explanations and beyond. Journal of Machine Learn...

  16. [23]

    A fresh look at sanity checks for saliency maps

    Anna Hedstr ¨om, Leander Weber, Sebastian Lapuschkin, and Marina H ¨ohne. A fresh look at sanity checks for saliency maps. In World Conference on Explainable Artificial Intelli- gence, pages 403–420. Springer, 2024. 1, 2

  17. [24]

    Fast and flexible convolutional sparse coding

    Felix Heide, Wolfgang Heidrich, and Gordon Wetzstein. Fast and flexible convolutional sparse coding. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 5135–5143, 2015. 2

  18. [25]

    Gaussian error linear units (gelus)

    Dan Hendrycks and Kevin Gimpel. Gaussian error linear units (gelus). arXiv preprint arXiv:1606.08415, 2016. 4

  19. [26]

    Fun- nybirds: A synthetic vision dataset for a part-based analysis of explainable ai methods

    Robin Hesse, Simone Schaub-Meyer, and Stefan Roth. Fun- nybirds: A synthetic vision dataset for a part-based analysis of explainable ai methods. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 3981– 3991, 2023. 2, 6

  20. [27]

    Batch normalization: Accelerating deep net- work training by reducing internal covariate shift

    Sergey Ioffe. Batch normalization: Accelerating deep net- work training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015. 3

  21. [28]

    Steex: steering counter- factual explanations with semantics

    Paul Jacob, ´Eloi Zablocki, Hedi Ben-Younes, Micka¨el Chen, Patrick P´erez, and Matthieu Cord. Steex: steering counter- factual explanations with semantics. In European Confer- ence on Computer Vision , pages 387–403. Springer, 2022. 2

  22. [29]

    Ad- versarial counterfactual visual explanations

    Guillaume Jeanneret, Lo ¨ıc Simon, and Fr ´ed´eric Jurie. Ad- versarial counterfactual visual explanations. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pat- tern Recognition, pages 16425–16435, 2023. 2 9

  23. [30]

    Interpretability be- yond feature attribution: Quantitative testing with concept activation vectors (tcav)

    Been Kim, Martin Wattenberg, Justin Gilmer, Carrie Cai, James Wexler, Fernanda Viegas, et al. Interpretability be- yond feature attribution: Quantitative testing with concept activation vectors (tcav). In International conference on ma- chine learning, pages 2668–2677. PMLR, 2018. 2

  24. [31]

    Hive: Evaluating the human interpretability of visual explanations

    Sunnie SY Kim, Nicole Meister, Vikram V Ramaswamy, Ruth Fong, and Olga Russakovsky. Hive: Evaluating the human interpretability of visual explanations. In European Conference on Computer Vision , pages 280–298. Springer,

  25. [32]

    Concept bottleneck models

    Pang Wei Koh, Thao Nguyen, Yew Siang Tang, Stephen Mussmann, Emma Pierson, Been Kim, and Percy Liang. Concept bottleneck models. In International conference on machine learning, pages 5338–5348. PMLR, 2020. 2

  26. [33]

    Visual concept connectome (vcc): Open world con- cept discovery and their interlayer connections in deep mod- els

    Matthew Kowal, Richard P Wildes, and Konstantinos G Der- panis. Visual concept connectome (vcc): Open world con- cept discovery and their interlayer connections in deep mod- els. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition , pages 108...

  27. [34]

    Imagenet classification with deep convolutional neural net- works

    Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural net- works. Advances in neural information processing systems , 25, 2012. 1

  28. [35]

    Layer normalization

    Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. ArXiv e-prints , pages arXiv–1607,

  29. [36]

    Towards visually explaining video under- standing networks with perturbation

    Zhenqiang Li, Weimin Wang, Zuoyue Li, Yifei Huang, and Yoichi Sato. Towards visually explaining video under- standing networks with perturbation. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 1120–1129, 2021. 2

  30. [37]

    A convnet for the 2020s

    Zhuang Liu, Hanzi Mao, Chao-Yuan Wu, Christoph Feicht- enhofer, Trevor Darrell, and Saining Xie. A convnet for the 2020s. In Proceedings of the IEEE/CVF conference on com- puter vision and pattern recognition , pages 11976–11986,

  31. [38]

    Rec- tifier nonlinearities improve neural network acoustic models

    Andrew L Maas, Awni Y Hannun, Andrew Y Ng, et al. Rec- tifier nonlinearities improve neural network acoustic models. In Proc. icml, page 3. Atlanta, GA, 2013. 1

  32. [39]

    Layer-wise relevance propagation: an overview.Explainable AI: interpreting, explaining and visualizing deep learning , pages 193–209, 2019

    Gr ´egoire Montavon, Alexander Binder, Sebastian La- puschkin, Wojciech Samek, and Klaus-Robert M ¨uller. Layer-wise relevance propagation: an overview.Explainable AI: interpreting, explaining and visualizing deep learning , pages 193–209, 2019. 2

  33. [40]

    Pip-net: Patch-based intuitive prototypes for interpretable image classification

    Meike Nauta, J ¨org Schl ¨otterer, Maurice Van Keulen, and Christin Seifert. Pip-net: Patch-based intuitive prototypes for interpretable image classification. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2744–2753, 2023. 2

  34. [41]

    Q-senn: Quantized self-explaining neural networks

    Thomas Norrenbrock, Marco Rudolph, and Bodo Rosen- hahn. Q-senn: Quantized self-explaining neural networks. In Proceedings of the AAAI Conference on Artificial Intelli- gence, pages 21482–21491, 2024. 2

  35. [42]

    A sur- vey of the usages of deep learning for natural language pro- cessing

    Daniel W Otter, Julian R Medina, and Jugal K Kalita. A sur- vey of the usages of deep learning for natural language pro- cessing. IEEE transactions on neural networks and learning systems, 32(2):604–624, 2020. 1

  36. [43]

    Lucidppn: Unambigu- ous prototypical parts network for user-centric interpretable computer vision

    Mateusz Pach, Dawid Rymarczyk, Koryna Lewandowska, Jacek Tabor, and Bartosz Zieli ´nski. Lucidppn: Unambigu- ous prototypical parts network for user-centric interpretable computer vision. arXiv preprint arXiv:2405.14331, 2024. 2

  37. [44]

    Good teachers explain: Explanation- enhanced knowledge distillation

    Amin Parchami-Araghi, Moritz B ¨ohle, Sukrut Rao, and Bernt Schiele. Good teachers explain: Explanation- enhanced knowledge distillation. arXiv preprint arXiv:2402.03119, 2024. 2

  38. [45]

    Prajit Ramachandran, Barret Zoph, and Quoc V . Le. Swish: a self-gated activation function. arXiv: Neural and Evolu- tionary Computing, 2017. 4

  39. [46]

    ” why should i trust you?” explaining the predictions of any classifier

    Marco Tulio Ribeiro, Sameer Singh, and Carlos Guestrin. ” why should i trust you?” explaining the predictions of any classifier. In Proceedings of the 22nd ACM SIGKDD interna- tional conference on knowledge discovery and data mining , pages 1135–1144, 2016. 2

  40. [47]

    Stop explaining black box machine learn- ing models for high stakes decisions and use interpretable models instead

    Cynthia Rudin. Stop explaining black box machine learn- ing models for high stakes decisions and use interpretable models instead. Nature machine intelligence, 1(5):206–215,

  41. [48]

    Protopshare: Prototypical parts sharing for simi- larity discovery in interpretable image classification

    Dawid Rymarczyk, Łukasz Struski, Jacek Tabor, and Bartosz Zieli´nski. Protopshare: Prototypical parts sharing for simi- larity discovery in interpretable image classification. In Pro- ceedings of the 27th ACM SIGKDD Conference on Knowl- edge Discovery & Data Mining, pages 1420...

  42. [49]

    In- terpretable image classification with differentiable proto- types assignment

    Dawid Rymarczyk, Łukasz Struski, Michał G ´orszczak, Ko- ryna Lewandowska, Jacek Tabor, and Bartosz Zieli´nski. In- terpretable image classification with differentiable proto- types assignment. In European Conference on Computer Vi- sion, pages 351–368. Springer, 2022. 2

  43. [50]

    Towards explain- able artificial intelligence

    Wojciech Samek and Klaus-Robert M¨uller. Towards explain- able artificial intelligence. Explainable AI: interpreting, ex- plaining and visualizing deep learning , pages 5–22, 2019. 1

  44. [51]

    Grad-cam: Visual explanations from deep networks via gradient-based localization

    Ramprasaath R Selvaraju, Michael Cogswell, Abhishek Das, Ramakrishna Vedantam, Devi Parikh, and Dhruv Batra. Grad-cam: Visual explanations from deep networks via gradient-based localization. In Proceedings of the IEEE in- ternational conference on computer vision , pages 618–626,

  45. [52]

    Very deep convo- lutional networks for large-scale image recognition, 2015

    Karen Simonyan and Andrew Zisserman. Very deep convo- lutional networks for large-scale image recognition, 2015. 6

  46. [54]

    Axiomatic attribution for deep networks

    Mukund Sundararajan, Ankur Taly, and Qiqi Yan. Axiomatic attribution for deep networks. InInternational conference on machine learning, pages 3319–3328. PMLR, 2017. 2

  47. [55]

    Post-hoc part- prototype networks

    Andong Tan, Fengtao Zhou, and Hao Chen. Post-hoc part- prototype networks. arXiv preprint arXiv:2406.03421, 2024. 5

  48. [56]

    Sanity checks for saliency metrics

    Richard Tomsett, Dan Harborne, Supriyo Chakraborty, Prud- hvi Gurram, and Alun Preece. Sanity checks for saliency metrics. In Proceedings of the AAAI conference on artificial intelligence, pages 6021–6029, 2020. 1

  49. [57]

    Deep learning for 10 computer vision: A brief review

    Athanasios V oulodimos, Nikolaos Doulamis, Anastasios Doulamis, and Eftychios Protopapadakis. Deep learning for 10 computer vision: A brief review. Computational intelligence and neuroscience, 2018(1):7068349, 2018. 1

  50. [58]

    Effi- cient mobile implementation of a cnn-based object recogni- tion system

    Keiji Yanai, Ryosuke Tanno, and Koichi Okamoto. Effi- cient mobile implementation of a cnn-based object recogni- tion system. In Proceedings of the 24th ACM international conference on Multimedia, pages 362–366, 2016. 2

  51. [59]

    Self-attention generative adversarial networks

    Han Zhang, Ian Goodfellow, Dimitris Metaxas, and Augus- tus Odena. Self-attention generative adversarial networks. In International conference on machine learning, pages 7354–

  52. [60]

    Shap- cam: Visual explanations for convolutional neural networks based on shapley value

    Quan Zheng, Ziwei Wang, Jie Zhou, and Jiwen Lu. Shap- cam: Visual explanations for convolutional neural networks based on shapley value. In European Conference on Com- puter Vision, pages 459–474. Springer, 2022. 2 11 OMENN: One Matrix to Explain Neural Networks Supplementary ...

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.