Pith. sign in

REVIEW 3 major objections 5 minor 300 references

Sparks of Explainability: Recent Advancements in Explaining Large Vision Models

T0 review · 3 major / 5 minor · reviewed 2026-08-09 · deepseek-v4-flash

Pith's one-line read This thesis argues that attribution methods only reveal where a vision model looks, and that real explainability requires concept-level tools (CRAFT, MACO) and human-aligned training.

desk verdict A well-packaged compilation of already-published XAI methods whose central 'what vs where' claim overstates CRAFT's causal faithfulness; a useful synthesis, not new research. read the letter →

arxiv 2502.01048 v1 pith:62X2WCFG submitted 2025-02-03 cs.CV cs.AI

classification cs.CVcs.AI MSC 68T0768T45
keywords explainableAIattributionmethodsconcept-basedexplainabilitySobolindicesfeaturevisualization1-LipschitznetworksvisionmodelsCRAFT
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 thesis argues that standard attribution methods—saliency maps and their relatives—answer only where a vision model looks, not what it perceives, and that this is why they prove inadequate in real-world, complex scenarios. To support this, the author develops a family of explainability tools: a stability-based metric for judging explanations, a Sobol-index attribution method that runs twice as fast as previous black-box approaches, and EVA, an attribution method with formal guarantees via verified perturbation analysis. User studies then show that even the best attribution methods offer little help beyond simple bias detection. The thesis concludes that explainability should move toward concept-based methods that extract the model's internal vocabulary (CRAFT and MACO) and toward training routines that align models with human reasoning, which also improve accuracy.

What carries the argument

The central object is the concept vector in the activation space of the network, with CRAFT applying non-negative matrix factorization of activations to obtain a dictionary of concept vectors that are then scored by their contribution to predictions. Around this sit: Sobol indices with quasi-Monte Carlo sampling for efficient black-box attribution; verified perturbation analysis for EVA's formal guarantees; and the 1-Lipschitz constraint that bounds gradients and makes explanations stable and consistent. The unification claim treats the extraction phase as dictionary learning and the importance phase as attribution applied to concepts.

What would settle it

Train a model on a dataset where the true decision rule is known and controllable, for example a clean classifier that relies on a single shape feature; if CRAFT's concept importance ranking does not put that feature first, or if removing the top concept directions from the activations leaves the model's predictions unchanged, then the concepts are not faithful.

Watch

Extended reading notes

Core claim

The central claim is that the "where" information provided by attribution methods is insufficient to understand a deep vision model: in complex scenarios, knowing which pixels a model attends to does not tell you which features or concepts trigger the decision. The thesis therefore establishes that explainability must answer "what" the model perceives, and develops CRAFT, a method that automatically extracts the concepts used by a model from its activation space and estimates their importance, together with MACO, a feature-visualization method that renders those concepts. It also shows that aligning models with human explanations—either by imitation or by constraining the model to 1-Lipschitz functions—improves both accuracy and explanation quality. A unifying analysis reveals that concept extraction is a dictionary-learning problem and that concept importance estimation is, implicitly, an attribution problem.

Load-bearing premise

The analysis assumes that the concept vectors extracted by factoring activations correspond to the features the model actually uses to make its decisions, rather than being merely low-rank directions that happen to correlate with human labels.

Editorial extensions

If this is right

  • If attribution methods provide only "where" information, then safety-critical deployments of explainability should not rely on heatmaps alone; concept-level explanations are needed.
  • Concept extraction and concept importance estimation form one coherent framework, so progress in attribution methods transfers directly to concept-based explainability.
  • Training with human-aligned objectives can increase both accuracy and explanation stability, suggesting that interpretability need not come at the cost of performance.
  • 1-Lipschitz neural networks provide provably bounded gradients, which translates into more generalizable and consistent explanations.
  • Quasi-Monte Carlo Sobol indices yield black-box explanations that are twice as fast as RISE and competitive with white-box methods.

Reading between the lines

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

  • If concept vectors are a faithful vocabulary of the model, the same machinery could be used for model editing: shifting activation directions to remove a concept, such as a spurious cue, and measuring the effect on behavior.
  • The where-versus-what distinction suggests a two-stage explanation pipeline—localize with attribution, then identify the concept at that location—which the thesis itself only partially implements through CRAFT combined with MACO.
  • Because the importance stage is shown to be a form of attribution, concept-based methods may inherit known attribution failure modes, such as sensitivity to baseline choice; stress-testing CRAFT's importance scores under different baselines would be a natural next experiment.
  • The alignment results raise the possibility that alignment with human explanations correlates with robustness; a direct test would be measuring adversarial robustness across harmonized and standard architectures.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 5 minor

Summary. This doctoral thesis compiles a series of peer-reviewed contributions in explainable computer vision and integrates them into a single narrative. Chapter 2 develops attribution methods and evaluation tools: a stability-based metric (MeGe/ReCo), a Sobol-indices black-box attribution method accelerated with quasi-Monte Carlo sampling, the EVA method with verified perturbation guarantees, and a human-centered meta-predictor evaluation of attribution usefulness. The central negative finding is that attribution methods reveal only where a model looks, not what it perceives, and are therefore of limited use in complex scenarios. Two remedies are then explored: aligning models with human explanations, including training with human rationales and 1-Lipschitz constrained networks (Chapter 3), and concept-based explainability, concretized by CRAFT, a unified extraction/importance framework, MACO feature visualization, and an interactive demo (Chapter 4). The thesis concludes with a discussion of future directions.

Significance. If the central claim is established, the thesis would provide a well-articulated argument for shifting explainability research from pixel-level attribution to concept-level and human-aligned methods. The individual methods have already passed peer review and are benchmarked on ImageNet, Pascal VOC, COCO, FRSign, and human studies. Concrete strengths include the reproducibility orientation: code is released via Xplique, CRAFT, and project repositories, and several derivations (Sobol indices estimators, EVA's verified perturbation analysis, the dictionary-learning unification of concept extraction) are technically grounded. The thesis also makes an honest attempt to evaluate methods with actual users rather than relying only on proxy metrics. The main risk is that the most load-bearing interpretive step, namely that CRAFT's extracted concepts are the causal features underlying model decisions, is supported by correlation, human plausibility, and input-perturbation fidelity rather than by causal intervention evidence; this gap directly affects the 'what' claim that motivates the proposed shift.

major comments (3)
  1. [§4.2 and Appendix C.1.4–C.1.6] The central 'what' claim rests on treating the non-negative matrix factorization of activation vectors as the model's internal vocabulary, with importance estimated by Sobol indices. The evidence in C.1.5 and C.1.6 demonstrates that extracted concepts align with human judgments and with input perturbations, but that is plausibility and correlation, not causal faithfulness. NMF is a low-rank reconstruction of the activation distribution, and it can recover components that correlate with human labels without being the features on which the decision function actually depends. The thesis should either add a direct intervention test, such as ablating or perturbing concept directions and measuring the resulting prediction change against a control dictionary matched for reconstruction error, or explicitly moderate the claim that CRAFT explains 'what' the model perceives.
  2. [§2.6 and Appendix A.5] The negative conclusion that attribution methods are of little use in complex scenarios is load-bearing because it motivates both subsequent hypotheses. The manuscript states that real users were tested but does not, in the provided text, give enough detail on participant numbers, task design, statistical power, or confidence intervals to rule out the possibility that the null result is an artifact of the specific visualization or interface. For a claim of this strength, the human study should be reported with the same rigor as the other experiments, including a precise definition of what counts as 'useful' and a comparison against a baseline explanation format.
  3. [§3.3 and Chapter 3 conclusion] The alignment hypothesis is examined in part through 1-Lipschitz networks, but Section 3.3 is only a brief outline in the provided manuscript. The conclusion that robustness improves human-aligned explanations is therefore established only for this constrained function class and depends on an optimal-transport perspective that is not presented in enough detail to verify. Either the section should be expanded to include the full derivation and experiments, or the conclusion should be narrowed so that the thesis does not imply a general alignment benefit across standard architectures.
minor comments (5)
  1. [§1.1.2, Definition 1.1.6] The convolution definition says 'where N denotes the convolution operation,' but N is already a notation used for the set of integers and does not match the convolution symbol used elsewhere in the formula; this is a typographical or notation error that should be corrected.
  2. [§2.1.4] The reference to 'Agarwal et al.' near the end of the stability discussion is incomplete; the authors and year should be supplied.
  3. [§1.3] The text refers to 'Chapter Chapter 2 and Chapter Chapter 4'; the duplicated word and the awkward phrasing should be cleaned up.
  4. [Title and Chapter 4] The title advertises 'Large Vision Models,' but the experiments are conducted on ResNet-50, VGG-16, EfficientNet, MobileNet, and ViT-S/32, which are not 'large' by current standards. The title should either be qualified or the scope should be stated more precisely.
  5. [Throughout] Several chapters read as summaries or reprints of the underlying conference papers rather than as a fully integrated monograph; adding explicit signposts about which content is reproduced verbatim and which is new synthesis would help the reader evaluate the incremental contribution.

Circularity Check

0 steps flagged · score 1.0 of 10

No significant circularity: the thesis's central claim is supported by external human and fidelity evaluations, and no derivation reduces to its own inputs by construction.

full rationale

The thesis is a compilation of the author's own peer-reviewed papers, and it does rely heavily on self-citation, which is normal for a doctoral dissertation. However, the load-bearing claims are not justified by definitional identity or by fitted parameters renamed as predictions. The central claim that attribution methods provide only 'where' and that concept-based methods (CRAFT) provide 'what' is supported by human experiments and fidelity benchmarks that are external to the methods' definitions. The CRAFT method extracts concepts via non-negative matrix factorization of activations and estimates their importance with Sobol indices; this is a proposed tool with empirical validation, not a theorem equating its output with the model's causal vocabulary. The main scientific risk (that NMF components may correlate with human labels without being causally used by the model) is a correctness concern, not a circularity. No equation in the visible derivation is equivalent to its input by construction, and no uniqueness theorem or prior self-citation is invoked to forbid alternatives. Accordingly, the circularity score is low (1), reflecting the heavy self-compilation but no load-bearing circular step.

Assumptions & free parameters 5 free parameters · 4 assumptions · 1 invented entities

The central claim depends on the choice of several hyperparameters (mask resolution, sample counts, concept counts, Lipschitz constant) and on domain assumptions about the validity of human explanations and the meaningfulness of matrix-factorized concepts. These are not fitted to a single dataset, but they are user-chosen and the conclusions are sensitive to them.

free parameters (5)
  • Sobol mask resolution = 11x11
    Set in Section 2.3.3; determines the granularity of attributions and the computational cost.
  • Sobol sample size N = 32
    Set in Section 2.3.3; yields 3,936 forward passes and is claimed to be sufficient for convergence.
  • CRAFT concept count (number of factors) = not stated in provided text
    CRAFT requires selecting the number of concepts per layer; this is a user-chosen hyperparameter that affects all downstream concept importance results.
  • Lipschitz constant = 1
    The thesis focuses on 1-Lipschitz networks as the explainability-friendly constraint; this is a modeling choice.
  • Perturbation baseline = 0 or gray
    Used throughout for deletion metrics and Sobol inpainting; different baselines change attribution scores.
assumptions (4)
  • domain assumption The Sobol-Hoeffding decomposition requires the model function to be in L2 and input variables to be independent.
    Section 2.3.2 relies on this to define sensitivity indices for attributions.
  • domain assumption Human explanations (e.g., ClickMe data) provide a valid ground truth for what a model should attend to.
    The thesis's claim that attribution methods fail is based on human experiments using such ground truth (Section 2.6).
  • ad hoc to paper Non-negative matrix factorization of activation vectors yields meaningful, human-interpretable concepts.
    CRAFT (Section 4.2) assumes that NMF components correspond to causal features used by the model.
  • ad hoc to paper 1-Lipschitz networks are representative of robust models and their explanation properties transfer to other architectures.
    Section 2.2 and Chapter 3 use 1-Lipschitzness as a proxy for explainability, a choice grounded in prior work but not universally established.
invented entities (1)
  • Concept as a vector in activation space (CRAFT components) independent evidence
    purpose: To provide human-interpretable, model-internal units of explanation that go beyond pixel-level attributions.
    The concept is visualized and evaluated with human studies, but the claim that it represents the model's causal features is not independently established.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Sparks of Explainability: Recent Advancements in Explaining Large Vision Models." pith.science (2026). https://pith.science/paper/62X2WCFG

@misc{pith2026250201048,
  author       = {Pith},
  title        = {Pith review of: Sparks of Explainability: Recent Advancements in Explaining Large Vision Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/62X2WCFG}},
  note         = {Machine review of arXiv:2502.01048}
}
read the original abstract

This thesis explores advanced approaches to improve explainability in computer vision by analyzing and modeling the features exploited by deep neural networks. Initially, it evaluates attribution methods, notably saliency maps, by introducing a metric based on algorithmic stability and an approach utilizing Sobol indices, which, through quasi-Monte Carlo sequences, allows a significant reduction in computation time. In addition, the EVA method offers a first formulation of attribution with formal guarantees via verified perturbation analysis. Experimental results indicate that in complex scenarios these methods do not provide sufficient understanding, particularly because they identify only "where" the model focuses without clarifying "what" it perceives. Two hypotheses are therefore examined: aligning models with human reasoning -- through the introduction of a training routine that integrates the imitation of human explanations and optimization within the space of 1-Lipschitz functions -- and adopting a conceptual explainability approach. The CRAFT method is proposed to automate the extraction of the concepts used by the model and to assess their importance, complemented by MACO, which enables their visualization. These works converge towards a unified framework, illustrated by an interactive demonstration applied to the 1000 ImageNet classes in a ResNet model.

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

300 extracted references · 68 canonical work pages

  1. [1]

    Mart\' n Abadi, Ashish Agarwal, Paul Barham, Eugene Brevdo, Zhifeng Chen, Craig Citro, Greg S. Corrado, Andy Davis, Jeffrey Dean, Matthieu Devin, Sanjay Ghemawat, Ian Goodfellow, Andrew Harp, Geoffrey Irving, Michael Isard, Yangqing Jia, Rafal Jozefowicz, Lukasz Kaiser, Manjunath Kudlur, Josh Levenberg, Dandelion Man\' e , Rajat Monga, Sherry Moore, Derek...

  2. [2]

    Quantifying attention flow in transformers

    Samira Abnar and Willem Zuidema. Quantifying attention flow in transformers. May 2020

  3. [3]

    Metaplasticity: the plasticity of synaptic plasticity

    Wickliffe C Abraham and Mark F Bear. Metaplasticity: the plasticity of synaptic plasticity. Trends in neurosciences, 1996

  4. [4]

    From attribution maps to human-understandable explanations through concept relevance propagation

    Reduan Achtibat, Maximilian Dreyer, Ilona Eisenbraun, Sebastian Bosse, Thomas Wiegand, Wojciech Samek, and Sebastian Lapuschkin. From attribution maps to human-understandable explanations through concept relevance propagation. Nature Machine Intelligence, 2023

  5. [5]

    Sanity checks for saliency maps

    Julius Adebayo, Justin Gilmer, Michael Muelly, Ian Goodfellow, Moritz Hardt, and Been Kim. Sanity checks for saliency maps. In Advances in Neural Information Processing Systems (NIPS), 2018

  6. [6]

    Rethinking stability for attribution-based explanations

    Chirag Agarwal, Nari Johnson, Martin Pawelczyk, Satyapriya Krishna, Eshika Saxena, Marinka Zitnik, and Himabindu Lakkaraju. Rethinking stability for attribution-based explanations. In ICLR 2022 Workshop on PAIR 2Struct: Privacy, Accountability, Interpretability, Robustness, Reasoning on Structured Data

  7. [7]

    Does explainable artificial intelligence improve human decision-making? In Proceedings of the AAAI Conference on Artificial Intelligence (AAAI), 2021

    Yasmeen Alufaisan, Laura R Marusich, Jonathan Z Bakdash, Yan Zhou, and Murat Kantarcioglu. Does explainable artificial intelligence improve human decision-making? In Proceedings of the AAAI Conference on Artificial Intelligence (AAAI), 2021

  8. [8]

    Jaakkola

    David Alvarez-Melis and Tommi S. Jaakkola. Towards robust interpretability with self-explaining neural networks. In Advances in Neural Information Processing Systems (NIPS), 2018

Show all 300 references
  1. [9]

    Towards better understanding of gradient-based attribution methods for deep neural networks

    Marco Ancona, Enea Ceolini, Cengiz Öztireli, and Markus Gross. Towards better understanding of gradient-based attribution methods for deep neural networks. In Proceedings of the International Conference on Learning Representations (ICLR), 2018

  2. [10]

    Current challenges and future opportunities for xai in machine learning-based clinical decision support systems: a systematic review

    Anna Markella Antoniadi, Yuhan Du, Yasmine Guendouz, Lan Wei, Claudia Mazo, Brett A Becker, and Catherine Mooney. Current challenges and future opportunities for xai in machine learning-based clinical decision support systems: a systematic review. Applied Sciences, 2021

  3. [11]

    u ller, and Wojciech Samek

    Leila Arras, Franziska Horn, Gr \'e goire Montavon, Klaus-Robert M \"u ller, and Wojciech Samek. " what is relevant in a text document?": An interpretable machine learning approach. PloS one, 12 0 (8): 0 e0181142, 2017 a

  4. [12]

    Explaining recurrent neural network predictions in sentiment analysis

    Leila Arras, Gr \'e goire Montavon, Klaus-Robert M \"u ller, and Wojciech Samek. Explaining recurrent neural network predictions in sentiment analysis. In Workshop on Computational Approaches to Subjectivity, Sentiment and Social Media Analysis (WASSA) in ENMLP, 2017 b

  5. [13]

    Øygard Audun

    M. Øygard Audun. Visualizing googlenet classes. URL: https://www.auduno.com/2015/07/29/visualizing-googlenet-classes/, 2 0 (3), 2015

  6. [14]

    Layer normalization

    Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. Advances in Neural Information Processing Systems (NeurIPS), 2016

  7. [15]

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

    Sebastian Bach, Alexander Binder, Grégoire Montavon, Frederick Klauschen, Klaus-Robert Müller, and Wojciech Samek. On pixel-wise explanations for non-linear classifier decisions by layer-wise relevance propagation. Public Library of Science (PloS One), 2015

  8. [16]

    Adversarial training and provable defenses: Bridging the gap

    Mislav Balunovic and Martin Vechev. Adversarial training and provable defenses: Bridging the gap. In Proceedings of the International Conference on Learning Representations (ICLR), 2019

  9. [17]

    The moore--penrose pseudoinverse: A tutorial review of the theory

    Jo \ a o Carlos Alves Barata and Mahir Saleh Hussein. The moore--penrose pseudoinverse: A tutorial review of the theory. Brazilian Journal of Physics, 2012

  10. [18]

    Foster, and Matus Telgarsky

    Peter Bartlett, Dylan J. Foster, and Matus Telgarsky. Spectrally-normalized margin bounds for neural networks. In Advances in Neural Information Processing Systems (NIPS), 2017

  11. [19]

    Towards formal approximated minimal explanations of neural networks

    Shahaf Bassan and Guy Katz. Towards formal approximated minimal explanations of neural networks. arXiv preprint arXiv:2210.13915, 2022

  12. [20]

    Explanation: A mechanist alternative

    William Bechtel and Adele Abrahamsen. Explanation: A mechanist alternative. Studies in History and Philosophy of Science Part C: Studies in History and Philosophy of Biological and Biomedical Sciences, 2005

  13. [21]

    Algorithmic differentiation of implicit functions and optimal values

    Bradley M Bell and James V Burke. Algorithmic differentiation of implicit functions and optimal values. In Advances in Automatic Differentiation, pages 67--77. Springer, 2008

  14. [22]

    Fairness seen as global sensitivity analysis

    Cl \'e ment B \'e nesse, Fabrice Gamboa, Jean-Michel Loubes, and Thibaut Boissin. Fairness seen as global sensitivity analysis. Machine Learning, Special Issue on Safe and Fair Machine Learning, 2021

  15. [23]

    Joint rotational invariance and adversarial training of a dual-stream transformer yields state of the art Brain-Score for area V4

    William Berrios and Arturo Deza. Joint rotational invariance and adversarial training of a dual-stream transformer yields state of the art Brain-Score for area V4 . March 2022

  16. [24]

    Numerical influence of relu’(0) on backpropagation

    David Bertoin, J \'e r \^o me Bolte, S \'e bastien Gerchinovitz, and Edouard Pauwels. Numerical influence of relu’(0) on backpropagation. Advances in Neural Information Processing Systems (NeurIPS), 2021

  17. [25]

    Pay attention to your loss: understanding misconceptions about lipschitz neural networks

    Louis B \'e thune, Thibaut Boissin, Mathieu Serrurier, Franck Mamalet, Corentin Friedrich, and Alberto Gonzalez Sanz. Pay attention to your loss: understanding misconceptions about lipschitz neural networks. Advances in Neural Information Processing Systems (NeurIPS), 2022

  18. [26]

    Robust one-class classification with signed distance function using 1-lipschitz neural networks

    Louis B \'e thune, Paul Novello, Thibaut Boissin, Guillaume Coiffier, Mathieu Serrurier, Quentin Vincenot, and Andres Troya-Galvis. Robust one-class classification with signed distance function using 1-lipschitz neural networks. Proceedings of the International Conference on M...

  19. [27]

    Dp-sgd without clipping: The lipschitz neural network way

    Louis B \'e thune, Thomas Mass \'e na, Thibaut Boissin, Yannick Prudent, Corentin Friedrich, Franck Mamalet, Aurelien Bellet, Mathieu Serrurier, and David Vigouroux. Dp-sgd without clipping: The lipschitz neural network way. Proceedings of the International Conference on Learn...

  20. [28]

    Flexivit: One model for all patch sizes

    Lucas Beyer, Pavel Izmailov, Alexander Kolesnikov, Mathilde Caron, Simon Kornblith, Xiaohua Zhai, Matthias Minderer, Michael Tschannen, Ibrahim Alabdulmohsin, and Filip Pavetic. Flexivit: One model for all patch sizes. arXiv preprint arXiv:2212.08013, 2022

  21. [29]

    Umang Bhatt, Adrian Weller, and José M. F. Moura. Evaluating and aggregating feature-based model explanations. In Proceedings of the International Joint Conference on Artificial Intelligence (IJCAI), 2020

  22. [30]

    Quality metrics for transparent machine learning with and without humans in the loop are not correlated

    Felix Biessmann and Dionysius Refiano. Quality metrics for transparent machine learning with and without humans in the loop are not correlated. In Workshop, Proceedings of the International Conference on Machine Learning (ICML), 2021

  23. [31]

    Efficient and modular implicit differentiation

    Mathieu Blondel, Quentin Berthet, Marco Cuturi, Roy Frostig, Stephan Hoyer, Felipe Llinares-L \'o pez, Fabian Pedregosa, and Jean-Philippe Vert. Efficient and modular implicit differentiation. Advances in Neural Information Processing Systems (NeurIPS), 2022

  24. [32]

    B-cos networks: alignment is all we need for interpretability

    Moritz B \"o hle, Mario Fritz, and Bernt Schiele. B-cos networks: alignment is all we need for interpretability. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 10329--10338, 2022

  25. [33]

    Holistically explainable vision transformers

    Moritz B \"o hle, Mario Fritz, and Bernt Schiele. Holistically explainable vision transformers. arXiv preprint arXiv:2301.08669, 2023

  26. [34]

    When pigs fly: Contextual reasoning in synthetic and natural scenes

    P Bomatter, M Zhang, D Karev, and others . When pigs fly: Contextual reasoning in synthetic and natural scenes. Proceedings of the, 2021

  27. [35]

    Proper network interpretability helps adversarial robustness in classification

    Akhilan Boopathy, Sijia Liu, Gaoyuan Zhang, Cynthia Liu, Pin-Yu Chen, Shiyu Chang, and Luca Daniel. Proper network interpretability helps adversarial robustness in classification. In Proceedings of the International Conference on Machine Learning (ICML), 2020

  28. [36]

    Exemplary natural images explain cnn activations better than state-of-the-art feature visualization

    Judy Borowski, Roland S Zimmermann, Judith Schepers, Robert Geirhos, Thomas SA Wallis, Matthias Bethge, and Wieland Brendel. Exemplary natural images explain cnn activations better than state-of-the-art feature visualization. In Advances in Neural Information Processing System...

  29. [37]

    Asteryx: A model-agnostic sat-based approach for symbolic and score-based explanations

    Ryma Boumazouza, Fahima Cheikh-Alili, Bertrand Mazure, and Karim Tabia. Asteryx: A model-agnostic sat-based approach for symbolic and score-based explanations. In Proceedings of the 30th ACM International Conference on Information & Knowledge Management, pages 120--129, 2021

  30. [38]

    Stability and generalization

    Olivier Bousquet and Andr \'e Elisseeff. Stability and generalization. The Journal of Machine Learning Research, 2002

  31. [39]

    Diffusion models as artists: Are we closing the gap between humans and machines? In Proceedings of the International Conference on Machine Learning (ICML), 2023

    Victor Boutin, Thomas Fel, Lakshya Singhal, Rishav Mukherji, Akash Nagaraj, Julien Colin, and Thomas Serre. Diffusion models as artists: Are we closing the gap between humans and machines? In Proceedings of the International Conference on Machine Learning (ICML), 2023

  32. [40]

    CYBORG : Blending human saliency into the loss improves deep learning

    Aidan Boyd, Patrick Tinsley, Kevin Bowyer, and Adam Czajka. CYBORG : Blending human saliency into the loss improves deep learning. December 2021

  33. [41]

    Distributed optimization and statistical learning via the alternating direction method of multipliers

    Stephen Boyd, Neal Parikh, Eric Chu, Borja Peleato, Jonathan Eckstein, et al. Distributed optimization and statistical learning via the alternating direction method of multipliers. Foundations and Trends in Machine learning , 3 0 (1): 0 1--122, 2011

  34. [42]

    Approximating CNNs with Bag-of-local-Features models works surprisingly well on ImageNet

    Wieland Brendel and Matthias Bethge. Approximating CNNs with Bag-of-local-Features models works surprisingly well on ImageNet . March 2019

  35. [43]

    Towards monosemanticity: Decomposing language models with dictionary learning

    Trenton Bricken, Adly Templeton, Joshua Batson, Brian Chen, Adam Jermyn, Tom Conerly, Nick Turner, Cem Anil, Carson Denison, Amanda Askell, Robert Lasenby, Yifan Wu, Shauna Kravec, Nicholas Schiefer, Tim Maxwell, Nicholas Joseph, Zac Hatfield-Dodds, Alex Tamkin, Karina Nguyen,...

  36. [44]

    How people look at pictures: a study of the psychology and perception in art

    G T Buswell. How people look at pictures: a study of the psychology and perception in art. 198, 1935

  37. [45]

    The many faces of 1-lipschitz neural networks, 2021

    Louis Béthune, Alberto González-Sanz, Franck Mamalet, and Mathieu Serrurier. The many faces of 1-lipschitz neural networks, 2021

  38. [46]

    Visual sensitivity to two-dimensional spatial phase

    Terry Caelli and Paul Bevan. Visual sensitivity to two-dimensional spatial phase. JOSA, 72 0 (10): 0 1375--1381, 1982

  39. [47]

    Thread: Circuits

    Nick Cammarata, Shan Carter, Gabriel Goh, Chris Olah, Michael Petrov, Ludwig Schubert, Chelsea Voss, Ben Egan, and Swee Kiat Lim. Thread: Circuits. Distill, 2020

  40. [48]

    Carvalho, Eduardo M

    Diogo V. Carvalho, Eduardo M. Pereira, and Jaime S. Cardoso. Machine learning interpretability: A survey on methods and metrics. Electronics, 2019

  41. [49]

    On the length of programs for computing finite binary sequences: statistical considerations

    Gregory J Chaitin. On the length of programs for computing finite binary sequences: statistical considerations. Journal of the ACM (JACM), pages 145--159, 1969

  42. [50]

    Algorithmic information theory

    Gregory J Chaitin. Algorithmic information theory. IBM journal of research and development, 1977

  43. [51]

    Go with the flow: Adaptive control for neural odes

    Mathieu Chalvidal, Matthew Ricci, Rufin VanRullen, and Thomas Serre. Go with the flow: Adaptive control for neural odes. Proceedings of the International Conference on Learning Representations (ICLR), 2020

  44. [52]

    Meta-reinforcement learning with self-modifying networks

    Mathieu Chalvidal, Thomas Serre, and Rufin VanRullen. Meta-reinforcement learning with self-modifying networks. Advances in Neural Information Processing Systems (NeurIPS), 2022

  45. [53]

    Do explanations make vqa models more predictable to a human? Proceedings of the Annual Meeting of the Association for Computational Linguistics (ACL), 2018

    Arjun Chandrasekaran, Viraj Prabhu, Deshraj Yadav, Prithvijit Chattopadhyay, and Devi Parikh. Do explanations make vqa models more predictable to a human? Proceedings of the Annual Meeting of the Association for Computational Linguistics (ACL), 2018

  46. [54]

    Grad-cam++: Generalized gradient-based visual explanations for deep convolutional networks

    Aditya Chattopadhay, Anirban Sarkar, Prantik Howlader, and Vineeth N Balasubramanian. Grad-cam++: Generalized gradient-based visual explanations for deep convolutional networks. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision (WACV), 2018

  47. [55]

    A simple framework for contrastive learning of visual representations

    Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. A simple framework for contrastive learning of visual representations. February 2020

  48. [56]

    Transformer tracking

    Xin Chen, Bin Yan, Jiawen Zhu, Dong Wang, Xiaoyun Yang, and Huchuan Lu. Transformer tracking. March 2021

  49. [57]

    Dual path networks

    Yunpeng Chen, Jianan Li, Huaxin Xiao, Xiaojie Jin, Shuicheng Yan, and Jiashi Feng. Dual path networks. July 2017

  50. [58]

    Fast fourier convolution

    Lu Chi, Borui Jiang, and Yadong Mu. Fast fourier convolution. In Advances in Neural Information Processing Systems (NeurIPS), 2020

  51. [59]

    Fran c ois Chollet et al. Keras. https://keras.io, 2015

  52. [60]

    Xception: Deep learning with depthwise separable convolutions

    Fran c ois Chollet. Xception: Deep learning with depthwise separable convolutions. October 2016

  53. [61]

    Xception: Deep learning with depthwise separable convolutions

    Fran c ois Chollet. Xception: Deep learning with depthwise separable convolutions. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2017

  54. [62]

    Fast local algorithms for large scale nonnegative matrix and tensor factorizations

    Andrzej Cichocki and Anh-Huy Phan. Fast local algorithms for large scale nonnegative matrix and tensor factorizations. IEICE transactions on fundamentals of electronics, communications and computer sciences, 92 0 (3): 0 708--721, 2009

  55. [63]

    What i cannot predict, i do not understand: A human-centered evaluation framework for explainability methods

    Julien Colin, Thomas Fel, R \'e mi Cad \`e ne, and Thomas Serre. What i cannot predict, i do not understand: A human-centered evaluation framework for explainability methods. Advances in Neural Information Processing Systems (NeurIPS), 2021

  56. [64]

    Characterizations of an empirical influence function for detecting influential cases in regression

    R Dennis Cook and Sanford Weisberg. Characterizations of an empirical influence function for detecting influential cases in regression. Technometrics, 1980

  57. [65]

    Study of the sensitivity of coupled reaction systems to uncertainties in rate coefficients

    RI Cukier, CM Fortuin, Kurt E Shuler, AG Petschek, and JH Schaibly. Study of the sensitivity of coupled reaction systems to uncertainties in rate coefficients. i theory. The Journal of chemical physics, 1973

  58. [66]

    Image complexity measure based on visual attention

    Matthieur Perreira Da Silva, Vincent Courboulay, and Pascal Estraillier. Image complexity measure based on visual attention. In 2011 18th IEEE International Conference on Image Processing, pages 3281--3284. IEEE, 2011

  59. [67]

    Global sensitivity analysis with dependence measures

    Sebastien Da Veiga. Global sensitivity analysis with dependence measures. Journal of Statistical Computation and Simulation, 2015

  60. [68]

    Efficient estimation of sensitivity indices

    S \'e bastien Da Veiga and Fabrice Gamboa. Efficient estimation of sensitivity indices. Journal of Nonparametric Statistics, 2013

  61. [69]

    Underspecification presents challenges for credibility in modern machine learning

    Alexander D'Amour, Katherine Heller, Dan Moldovan, Ben Adlam, Babak Alipanahi, Alex Beutel, Christina Chen, Jonathan Deaton, Jacob Eisenstein, Matthew D Hoffman, et al. Underspecification presents challenges for credibility in modern machine learning. The Journal of Machine Le...

  62. [70]

    Opportunities and challenges in explainable artificial intelligence (xai): A survey

    Arun Das and Paul Rad. Opportunities and challenges in explainable artificial intelligence (xai): A survey. arXiv preprint arXiv:2006.11371, 2020

  63. [71]

    ConViT : Improving vision transformers with soft convolutional inductive biases

    St \'e phane d'Ascoli, Hugo Touvron, Matthew Leavitt, Ari Morcos, Giulio Biroli, and Levent Sagun. ConViT : Improving vision transformers with soft convolutional inductive biases. March 2021

  64. [72]

    Approximating rate-distortion graphs of individual data: Experiments in lossy compression and denoising

    Steven de Rooij and Paul Vit \'a nyi. Approximating rate-distortion graphs of individual data: Experiments in lossy compression and denoising. IEEE Transactions on Computers, 2006

  65. [73]

    J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei. ImageNet: A Large-Scale Hierarchical Image Database . In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2009

  66. [74]

    Emergent properties of foveated perceptual systems

    Arturo Deza and Talia Konkle. Emergent properties of foveated perceptual systems. June 2020

  67. [75]

    How does the brain solve visual object recognition? Neuron, 73 0 (3): 0 415--434, February 2012

    James J DiCarlo, Davide Zoccolan, and Nicole C Rust. How does the brain solve visual object recognition? Neuron, 73 0 (3): 0 415--434, February 2012

  68. [76]

    Lee R. Dice. Measures of the amount of ecologic association between species. Ecology, 1945

  69. [77]

    On the equivalence of nonnegative matrix factorization and spectral clustering

    Chris Ding, Xiaofeng He, and Horst D Simon. On the equivalence of nonnegative matrix factorization and spectral clustering. In Proceedings of the 2005 SIAM international conference on data mining, pages 606--610. SIAM, 2005

  70. [78]

    Towards a rigorous science of interpretable machine learning

    Finale Doshi-Velez and Been Kim. Towards a rigorous science of interpretable machine learning. A r X iv e-print , 2017

  71. [79]

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

    A Dosovitskiy, L Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, M Dehghani, Matthias Minderer, G Heigold, S Gelly, Jakob Uszkoreit, and N Houlsby. An image is worth 16x16 words: Transformers for image recognition at scale. ICLR, 2021

  72. [80]

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

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

  73. [81]

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

    Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. In Proceedings of th...

  74. [82]

    Incorporating nesterov momentum into adam

    Timothy Dozat. Incorporating nesterov momentum into adam. Proceedings of the International Conference on Learning Representations (ICLR), 2016

  75. [83]

    Decomon: Automatic certified perturbation analysis of neural networks, 2021

    Ducoffe, Melanie . Decomon: Automatic certified perturbation analysis of neural networks, 2021. URL https://github.com/airbus/decomon

  76. [84]

    Dictionary learning algorithms and applications

    Bogdan Dumitrescu and Paul Irofti. Dictionary learning algorithms and applications. Springer, 2018

  77. [85]

    Sven Eberhardt, Jonah G Cader, and Thomas Serre. How deep is the feature analysis underlying rapid visual categorization? In D D Lee, M Sugiyama, U V Luxburg, I Guyon, and R Garnett, editors, Advances in Neural Information Processing Systems 29, pages 1100--1108. Curran Associ...

  78. [86]

    Do humans look where deep convolutional neural networks ``attend''? In Advances in Visual Computing, pages 53--65

    Mohammad K Ebrahimpour, J Ben Falandays, Samuel Spevack, and David C Noelle. Do humans look where deep convolutional neural networks ``attend''? In Advances in Visual Computing, pages 53--65. Springer International Publishing, 2019

  79. [87]

    The approximation of one matrix by another of lower rank

    Carl Eckart and Gale Young. The approximation of one matrix by another of lower rank. Psychometrika, 1936

  80. [88]

    Formal verification of piece-wise linear feed-forward neural networks

    Ruediger Ehlers. Formal verification of piece-wise linear feed-forward neural networks. In International Symposium on Automated Technology for Verification and Analysis, pages 269--286. Springer, 2017

  81. [89]

    Toy models of superposition

    Nelson Elhage, Tristan Hume, Catherine Olsson, Nicholas Schiefer, Tom Henighan, Shauna Kravec, Zac Hatfield-Dodds, Robert Lasenby, Dawn Drain, Carol Chen, Roger Grosse, Sam McCandlish, Jared Kaplan, Dario Amodei, Martin Wattenberg, and Christopher Olah. Toy models of superposi...

  82. [90]

    Explaining classifiers using adversarial perturbations on the perceptual ball

    Andrew Elliott, Stephen Law, and Chris Russell. Explaining classifiers using adversarial perturbations on the perceptual ball. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2021

  83. [91]

    Adversarial robustness as a prior for learned representations

    Logan Engstrom, Andrew Ilyas, Shibani Santurkar, Dimitris Tsipras, Brandon Tran, and Aleksander Madry. Adversarial robustness as a prior for learned representations. arXiv preprint arXiv:1906.00945, 2019

  84. [92]

    Visualizing higher-layer features of a deep network

    Dumitru Erhan, Yoshua Bengio, Aaron Courville, and Pascal Vincent. Visualizing higher-layer features of a deep network. University of Montreal, 1341 0 (3): 0 1, 2009

  85. [93]

    The pascal visual object classes (voc) challenge

    Mark Everingham, Luc Van Gool, Christopher KI Williams, John Winn, and Andrew Zisserman. The pascal visual object classes (voc) challenge. International Journal of Computer Vision (IJCV), 2010

  86. [94]

    The characteristics and limits of rapid visual categorization

    Mich \`e le Fabre-Thorpe. The characteristics and limits of rapid visual categorization. Front. Psychol., 2: 0 243, October 2011

  87. [95]

    Initialization for non-negative matrix factorization: a comprehensive review

    Sajad Fathi Hafshejani and Zahra Moaberfard. Initialization for non-negative matrix factorization: a comprehensive review. International Journal of Data Science and Analytics, 2023

  88. [96]

    Representativity and consistency measures for deep neural network explanations

    Thomas Fel and David Vigouroux. Representativity and consistency measures for deep neural network explanations. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision (WACV), 2022

  89. [97]

    Look at the variance! efficient black-box explanations with sobol-based sensitivity analysis

    Thomas Fel, Remi Cadene, Mathieu Chalvidal, Matthieu Cord, David Vigouroux, and Thomas Serre. Look at the variance! efficient black-box explanations with sobol-based sensitivity analysis. In Advances in Neural Information Processing Systems (NeurIPS), 2021

  90. [98]

    Harmonizing the object recognition strategies of deep neural networks with humans

    Thomas Fel, Ivan Felipe, Drew Linsley, and Thomas Serre. Harmonizing the object recognition strategies of deep neural networks with humans. In Advances in Neural Information Processing Systems (NeurIPS), 2022 a

  91. [99]

    Xplique: A deep learning explainability toolbox

    Thomas Fel, Lucas Hervier, David Vigouroux, Antonin Poche, Justin Plakoo, Remi Cadene, Mathieu Chalvidal, Julien Colin, Thibaut Boissin, Louis Bethune, Agustin Picard, Claire Nicodeme, Laurent Gardes, Gregory Flandin, and Thomas Serre. Xplique: A deep learning explainability t...

  92. [100]

    Xplique: A deep learning explainability toolbox

    Thomas Fel, Lucas Hervier, David Vigouroux, Antonin Poche, Justin Plakoo, Remi Cadene, Mathieu Chalvidal, Julien Colin, Thibaut Boissin, Louis Béthune, Agustin Picard, Claire Nicodeme, Laurent Gardes, Gregory Flandin, and Thomas Serre. Xplique: A deep learning explainability t...

  93. [101]

    A holistic approach to unifying automatic concept extraction and concept importance estimation

    Thomas Fel, Victor Boutin, Mazda Moayeri, R \'e mi Cad \`e ne, Louis Bethune, Mathieu Chalvidal, Thomas Serre, et al. A holistic approach to unifying automatic concept extraction and concept importance estimation. In Advances in Neural Information Processing Systems (NeurIPS), 2023 a

  94. [102]

    Don't lie to me! robust and efficient explainability with verified perturbation analysis

    Thomas Fel, Melanie Ducoffe, David Vigouroux, Remi Cadene, Mikael Capelle, Claire Nicodeme, and Thomas Serre. Don't lie to me! robust and efficient explainability with verified perturbation analysis. Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition...

  95. [103]

    Craft: Concept recursive activation factorization for explainability

    Thomas Fel, Agustin Picard, Louis Bethune, Thibaut Boissin, David Vigouroux, Julien Colin, Rémi Cadène, and Thomas Serre. Craft: Concept recursive activation factorization for explainability. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVP...

  96. [104]

    Coalitional strategies for efficient individual prediction explanation

    Gabriel Ferrettini, Elodie Escriva, Julien Aligon, Jean-Baptiste Excoffier, and Chantal Soul \'e -Dupuy. Coalitional strategies for efficient individual prediction explanation. Information Systems Frontiers, pages 1--27, 2021

  97. [105]

    Algorithms for nonnegative matrix factorization with the -divergence

    C \'e dric F \'e votte and J \'e r \^o me Idier. Algorithms for nonnegative matrix factorization with the -divergence. Neural computation, 23 0 (9): 0 2421--2456, 2011

  98. [106]

    Pot python optimal transport library, 2017

    Rémi Flamary and Nicolas Courty. Pot python optimal transport library, 2017. URL https://pythonot.github.io/

  99. [107]

    Understanding deep networks via extremal perturbations and smooth masks

    Ruth Fong, Mandela Patrick, and Andrea Vedaldi. Understanding deep networks via extremal perturbations and smooth masks. In Proceedings of the IEEE International Conference on Computer Vision (ICCV), 2019

  100. [108]

    Fong and Andrea Vedaldi

    Ruth C. Fong and Andrea Vedaldi. Interpretable explanations of black boxes by meaningful perturbation. In Proceedings of the IEEE International Conference on Computer Vision (ICCV), 2017 a

  101. [109]

    Fong and Andrea Vedaldi

    Ruth C. Fong and Andrea Vedaldi. Interpretable explanations of black boxes by meaningful perturbation. In Proceedings of the IEEE International Conference on Computer Vision (ICCV), 2017 b

  102. [110]

    Interpretable explanations of black boxes by meaningful perturbation

    Ruth C Fong and Andrea Vedaldi. Interpretable explanations of black boxes by meaningful perturbation. In Proceedings of the IEEE International Conference on Computer Vision (ICCV), 2017 c

  103. [111]

    Confounds in pictorial sets: The role of complexity and familiarity in basic-level picture processing

    Alex Forsythe, Gerry Mulhern, and Martin Sawey. Confounds in pictorial sets: The role of complexity and familiarity in basic-level picture processing. Behavior research methods, 40 0 (1): 0 116--129, 2008

  104. [112]

    Visual complexity: is that all there is? In International Conference on Engineering Psychology and Cognitive Ergonomics, pages 158--166

    Alexandra Forsythe. Visual complexity: is that all there is? In International Conference on Engineering Psychology and Cognitive Ergonomics, pages 158--166. Springer, 2009

  105. [113]

    Nonnegative matrix factorization for signal and data analytics: Identifiability, algorithms, and applications

    Xiao Fu, Kejun Huang, Nicholas D Sidiropoulos, and Wing-Kin Ma. Nonnegative matrix factorization for signal and data analytics: Identifiability, algorithms, and applications. IEEE Signal Process. Mag., 2019

  106. [114]

    Large scale image segmentation with structured loss based deep learning for connectome reconstruction

    J Funke, F D Tschopp, W Grisaitis, A Sheridan, C Singh, S Saalfeld, and S C Turaga. Large scale image segmentation with structured loss based deep learning for connectome reconstruction. IEEE Trans. Pattern Anal. Mach. Intell., pages 1--1, 2018

  107. [115]

    Res2Net : A new Multi-Scale backbone architecture

    Shang-Hua Gao, Ming-Ming Cheng, Kai Zhao, Xin-Yu Zhang, Ming-Hsuan Yang, and Philip Torr. Res2Net : A new Multi-Scale backbone architecture. IEEE Trans. Pattern Anal. Mach. Intell., 43 0 (2): 0 652--662, February 2021

  108. [116]

    ImageNet-trained CNNs are biased towards texture; increasing shape bias improves accuracy and robustness

    Robert Geirhos, Patricia Rubisch, Claudio Michaelis, Matthias Bethge, Felix A Wichmann, and Wieland Brendel. ImageNet-trained CNNs are biased towards texture; increasing shape bias improves accuracy and robustness. November 2018

  109. [117]

    Shortcut learning in deep neural networks

    Robert Geirhos, J \"o rn-Henrik Jacobsen, Claudio Michaelis, Richard Zemel, Wieland Brendel, Matthias Bethge, and Felix A Wichmann. Shortcut learning in deep neural networks. Nature Machine Intelligence, 2 0 (11): 0 665--673, November 2020 a

  110. [118]

    Shortcut learning in deep neural networks

    Robert Geirhos, J \"o rn-Henrik Jacobsen, Claudio Michaelis, Richard Zemel, Wieland Brendel, Matthias Bethge, and Felix A Wichmann. Shortcut learning in deep neural networks. Nature Machine Intelligence, 2020 b

  111. [119]

    Partial success in closing the gap between human and machine vision

    Robert Geirhos, Kantharaju Narayanappa, Benjamin Mitzkus, Tizian Thieringer, Matthias Bethge, Felix A Wichmann, and Wieland Brendel. Partial success in closing the gap between human and machine vision. June 2021

  112. [120]

    Zimmermann, Blair Bilodeau, Wieland Brendel, and Been Kim

    Robert Geirhos, Roland S. Zimmermann, Blair Bilodeau, Wieland Brendel, and Been Kim. Don't trust your eyes: on the (un)reliability of feature visualizations, 2023

  113. [121]

    Concept possession, experimental semantics, and hybrid theories of reference

    James Genone and Tania Lombrozo. Concept possession, experimental semantics, and hybrid theories of reference. Philosophical Psychology, 25 0 (5): 0 717--742, 2012

  114. [122]

    On integration methods based on scrambled nets of arbitrary size

    Mathieu Gerber. On integration methods based on scrambled nets of arbitrary size. Journal of Complexity, 2015

  115. [123]

    Interpretation of neural networks is fragile

    Amirata Ghorbani, Abubakar Abid, and James Zou. Interpretation of neural networks is fragile. In Proceedings of the AAAI Conference on Artificial Intelligence (AAAI), 2017

  116. [124]

    Towards automatic concept-based explanations

    Amirata Ghorbani, James Wexler, James Y Zou, and Been Kim. Towards automatic concept-based explanations. In Advances in Neural Information Processing Systems (NeurIPS), 2019

  117. [125]

    Gilpin, David Bau, Ben Z Yuan, Ayesha Bajwa, Michael Specter, and Lalana Kagal

    Leilani H. Gilpin, David Bau, Ben Z Yuan, Ayesha Bajwa, Michael Specter, and Lalana Kagal. Explaining explanations: An overview of interpretability of machine learning. In Proceedings of the IEEE International Conference on data science and advanced analytics (DSAA), 2018

  118. [126]

    On the role of spatial phase and phase correlation in vision, illusion, and cognition

    Evgeny Gladilin and Roland Eils. On the role of spatial phase and phase correlation in vision, illusion, and cognition. Frontiers in Computational Neuroscience, 9: 0 45, 2015

  119. [127]

    Controversial stimuli: Pitting neural networks against each other as models of human cognition

    Tal Golan, Prashant C Raju, and Nikolaus Kriegeskorte. Controversial stimuli: Pitting neural networks against each other as models of human cognition. Proc. Natl. Acad. Sci. U. S. A., 117 0 (47): 0 29330--29337, November 2020

  120. [128]

    Deep learning

    Ian Goodfellow, Yoshua Bengio, and Aaron Courville. Deep learning. MIT press, 2016

  121. [129]

    Explaining and harnessing adversarial examples

    Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. Proceedings of the International Conference on Learning Representations (ICLR), 2015

  122. [130]

    right to explanation

    Bryce Goodman and Seth Flaxman. European union regulations on algorithmic decision-making and a “right to explanation”. AI magazine, 2017

  123. [131]

    Sharpening local interpretable model-agnostic explanations for histopathology: improved understandability and reliability

    Mara Graziani, Iam Palatnik de Sousa, Marley MBR Vellasco, Eduardo Costa da Silva, Henning M \"u ller, and Vincent Andrearczyk. Sharpening local interpretable model-agnostic explanations for histopathology: improved understandability and reliability. In Medical Image Computing...

  124. [132]

    Concept discovery and dataset exploration with singular value decomposition

    Mara Graziani, An-phi Nguyen, Laura O'Mahony, Henning M \"u ller, and Vincent Andrearczyk. Concept discovery and dataset exploration with singular value decomposition. In WorkshopProceedings of the International Conference on Learning Representations (ICLR), 2023

  125. [133]

    Evaluating derivatives: principles and techniques of algorithmic differentiation

    Andreas Griewank and Andrea Walther. Evaluating derivatives: principles and techniques of algorithmic differentiation. SIAM, 2008

  126. [134]

    Oculo-retinal dynamics can explain the perception of minimal recognizable configurations

    Liron Zipora Gruber, Shimon Ullman, and Ehud Ahissar. Oculo-retinal dynamics can explain the perception of minimal recognizable configurations. Proc. Natl. Acad. Sci. U. S. A., 118 0 (34), August 2021

  127. [135]

    Algorithmic information theory

    Peter D Gr \"u nwald, Paul MB Vit \'a nyi, et al. Algorithmic information theory. Handbook of the Philosophy of Information, 2008

  128. [136]

    psiturk: An open-source framework for conducting replicable behavioral experiments online

    Todd M Gureckis, Jay Martin, John McDonnell, Alexander S Rich, Doug Markant, Anna Coenen, David Halpern, Jessica B Hamrick, and Patricia Chan. psiturk: An open-source framework for conducting replicable behavioral experiments online. Behav. Res. Methods, 48 0 (3): 0 829--842, ...

  129. [137]

    Image phase or amplitude? rapid scene categorization is an amplitude-based process

    Nathalie Guyader, Alan Chauvin, Carole Peyrin, Jeanny H \'e rault, and Christian Marendaz. Image phase or amplitude? rapid scene categorization is an amplitude-based process. Comptes Rendus Biologies, 327 0 (4): 0 313--318, 2004

  130. [138]

    FRSign: A Large-Scale Traffic Light Dataset for Autonomous Trains

    Jeanine Harb , Nicolas R \'e b \'e na , Rapha \"e l Chosidow , Gr \'e goire Roblin , Roman Potarusov , and Hatem Hajri . FRSign: A Large-Scale Traffic Light Dataset for Autonomous Trains . arXiv e-prints, 2020

  131. [139]

    Swag: Superpixels weighted by average gradients for explanations of cnns

    Thomas Hartley, Kirill Sidorov, Christopher Willis, and David Marshall. Swag: Superpixels weighted by average gradients for explanations of cnns. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, 2021

  132. [140]

    Peter Hase and Mohit Bansal. Evaluating explainable ai: Which algorithmic explanations help users predict model behavior? Proceedings of the Annual Meeting of the Association for Computational Linguistics (ACL), 2020

  133. [141]

    The out-of-distribution problem in explainability and search methods for feature importance explanations

    Peter Hase, Harry Xie, and Mohit Bansal. The out-of-distribution problem in explainability and search methods for feature importance explanations. Advances in Neural Information Processing Systems (NeurIPS), 2021

  134. [142]

    The elements of statistical learning: data mining, inference, and prediction

    Trevor Hastie, Robert Tibshirani, Jerome H Friedman, and Jerome H Friedman. The elements of statistical learning: data mining, inference, and prediction. Springer, 2009

  135. [143]

    On baselines for local feature attributions

    Johannes Haug, Stefan Z \"u rn, Peter El-Jiz, and Gjergji Kasneci. On baselines for local feature attributions. arXiv preprint arXiv:2101.00905, 2021

  136. [144]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. December 2015

  137. [145]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016

  138. [146]

    o m, Leander Weber, Dilyara Bareeva, Franz Motzkus, Wojciech Samek, Sebastian Lapuschkin, and Marina M-C H \

    Anna Hedstr \"o m, Leander Weber, Dilyara Bareeva, Franz Motzkus, Wojciech Samek, Sebastian Lapuschkin, and Marina M-C H \"o hne. Quantus: an explainable ai toolkit for responsible evaluation of neural network explanations. The Journal of Machine Learning Research (JMLR), 2022

  139. [147]

    Formal Guarantees on the Robustness of a Classifier against Adversarial Manipulation

    Matthias Hein and Maksym Andriushchenko. Formal Guarantees on the Robustness of a Classifier against Adversarial Manipulation . In Advances in Neural Information Processing Systems (NeurIPS), 2017

  140. [148]

    Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification

    Patrick Helber, Benjamin Bischke, Andreas Dengel, and Damian Borth. Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification. In IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing (JSTARS), 2019

  141. [149]

    Studies in the logic of explanation

    Carl G Hempel and Paul Oppenheim. Studies in the logic of explanation. Philosophy of science, 1948

  142. [150]

    The vanishing gradient problem during learning recurrent neural nets and problem solutions

    Sepp Hochreiter. The vanishing gradient problem during learning recurrent neural nets and problem solutions. International Journal of Uncertainty, Fuzziness and Knowledge-Based Systems, 1998

  143. [151]

    A class of statistics with asymptotically normal distribution

    Wassily Hoeffding. A class of statistics with asymptotically normal distribution. Annals of Mathematical Statistics, 1948

  144. [152]

    Importance measures in global sensitivity analysis of nonlinear models

    Toshimitsu Homma and Andrea Saltelli. Importance measures in global sensitivity analysis of nonlinear models. Reliability Engineering & System Safety, 1996

  145. [153]

    A benchmark for interpretability methods in deep neural networks

    Sara Hooker, Dumitru Erhan, Pieter-Jan Kindermans, and Been Kim. A benchmark for interpretability methods in deep neural networks. In Advances in Neural Information Processing Systems (NeurIPS), 2019

  146. [154]

    On explanation

    John Hospers. On explanation. The journal of philosophy, 1946

  147. [155]

    Searching for MobileNetV3

    Andrew Howard, Mark Sandler, Grace Chu, Liang-Chieh Chen, Bo Chen, Mingxing Tan, Weijun Wang, Yukun Zhu, Ruoming Pang, Vijay Vasudevan, Quoc V Le, and Hartwig Adam. Searching for MobileNetV3 . May 2019

  148. [156]

    Mobilenets: Efficient convolutional neural networks for mobile vision applications

    Andrew G Howard, Menglong Zhu, Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand, Marco Andreetto, and Hartwig Adam. Mobilenets: Efficient convolutional neural networks for mobile vision applications. Proceedings of the IEEE Conference on Computer Vision and Pattern Rec...

  149. [157]

    Imagenette dataset, 2019

    Jeremy Howard. Imagenette dataset, 2019. URL https://github.com/fastai/imagenette/

  150. [158]

    Evaluations and methods for explanation through robustness analysis

    Cheng-Yu Hsieh, Chih-Kuan Yeh, Xuanqing Liu, Pradeep Ravikumar, Seungyeon Kim, Sanjiv Kumar, and Cho-Jui Hsieh. Evaluations and methods for explanation through robustness analysis. In Proceedings of the International Conference on Learning Representations (ICLR), 2021

  151. [159]

    Densely connected convolutional networks

    Gao Huang, Zhuang Liu, Laurens Van Der Maaten, and Kilian Q Weinberger. Densely connected convolutional networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2017

  152. [160]

    A flexible and efficient algorithmic framework for constrained matrix and tensor factorization

    Kejun Huang, Nicholas D Sidiropoulos, and Athanasios P Liavas. A flexible and efficient algorithmic framework for constrained matrix and tensor factorization. IEEE Transactions on Signal Processing, 64 0 (19): 0 5052--5065, 2016

  153. [161]

    GOT-10k : A large High-Diversity benchmark for generic object tracking in the wild

    Lianghua Huang, Xin Zhao, and Kaiqi Huang. GOT-10k : A large High-Diversity benchmark for generic object tracking in the wild. October 2018

  154. [162]

    Developments and applications of shapley effects to reliability-oriented sensitivity analysis with correlated inputs

    Marouane Il Idrissi, Vincent Chabridon, and Bertrand Iooss. Developments and applications of shapley effects to reliability-oriented sensitivity analysis with correlated inputs. Environmental Modelling & Software, 2021

  155. [163]

    On the coalitional decomposition of parameters of interest, 2023

    Marouane Il Idrissi, Nicolas Bousquet, Fabrice Gamboa, Bertrand Iooss, and Jean-Michel Loubes. On the coalitional decomposition of parameters of interest, 2023

  156. [164]

    Abduction-based explanations for machine learning models

    Alexey Ignatiev, Nina Narodytska, and Joao Marques-Silva. Abduction-based explanations for machine learning models. In Advances in Neural Information Processing Systems (NeurIPS), 2019 a

  157. [165]

    On relating explanations and adversarial examples

    Alexey Ignatiev, Nina Narodytska, and Joao Marques-Silva. On relating explanations and adversarial examples. In Advances in Neural Information Processing Systems (NeurIPS), 2019 b

  158. [166]

    Batch normalization: Accelerating deep network training by reducing internal covariate shift

    Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. In Proceedings of the International Conference on Machine Learning (ICML), 2015

  159. [167]

    A review on global sensitivity analysis methods

    Bertrand Iooss and Paul Lemaître. A review on global sensitivity analysis methods. Uncertainty management in Simulation-Optimization of Complex Systems: Algorithms and Applications, 2015

  160. [168]

    L. Itti. Models of bottom-up attention and saliency. Neurobiology of attention, 2005

  161. [169]

    Alon Jacovi and Yoav Goldberg. Towards faithfully interpretable nlp systems: How should we define and evaluate faithfulness? Proceedings of the Annual Meeting of the Association for Computational Linguistics (ACL), 2020

  162. [170]

    Formalizing trust in artificial intelligence: Prerequisites, causes and goals of human trust in ai

    Alon Jacovi, Ana Marasovi \'c , Tim Miller, and Yoav Goldberg. Formalizing trust in artificial intelligence: Prerequisites, causes and goals of human trust in ai. In Proceedings of the Annual Meeting of the Association for Computational Linguistics (ACL), 2021

  163. [171]

    Texture-like representation of objects in human visual cortex

    Akshay V Jagadeesh and Justin L Gardner. Texture-like representation of objects in human visual cortex. Proceedings of the National Academy of Sciences, 119 0 (17): 0 e2115302119, 2022

  164. [172]

    Asymptotic normality and efficiency of two sobol index estimators

    Alexandre Janon, Thierry Klein, Agnes Lagnoux, Ma \"e lle Nodet, and Cl \'e mentine Prieur. Asymptotic normality and efficiency of two sobol index estimators. ESAIM: Probability and Statistics, 2014

  165. [173]

    Michiel J.W. Jansen. Analysis of variance designs for model output. Computer Physics Communications, 1999

  166. [174]

    SALICON : Saliency in context

    Ming Jiang, Shengsheng Huang, Juanyong Duan, and Qi Zhao. SALICON : Saliency in context. In 2015 IEEE Conference on Computer Vision and Pattern Recognition ( CVPR ) , pages 1072--1080, June 2015

  167. [175]

    Rapid visual categorization of natural scene contexts with equalized amplitude spectrum and increasing phase noise

    Olivier R Joubert, Guillaume A Rousselet, Michele Fabre-Thorpe, and Denis Fize. Rapid visual categorization of natural scene contexts with equalized amplitude spectrum and increasing phase noise. Journal of Vision, 2009

  168. [176]

    The right to explanation, explained

    Margot E Kaminski. The right to explanation, explained. In Research Handbook on Information Law and Governance. Edward Elgar Publishing, 2021

  169. [177]

    Mathematical methods of organizing and planning production

    Leonid V Kantorovich. Mathematical methods of organizing and planning production. Management science, 6 0 (4): 0 366--422, 1960

  170. [178]

    Xrai: Better attributions through regions

    Andrei Kapishnikov, Tolga Bolukbasi, Fernanda Vi \'e gas, and Michael Terry. Xrai: Better attributions through regions. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2019

  171. [179]

    Scaling laws for neural language models

    Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei. Scaling laws for neural language models. January 2020

  172. [180]

    Minima of functions of several variables with inequalities as side constraints

    William Karush. Minima of functions of several variables with inequalities as side constraints. M. Sc. Dissertation. Dept. of Mathematics, Univ. of Chicago, 1939

  173. [181]

    Reluplex: An efficient smt solver for verifying deep neural networks

    Guy Katz, Clark Barrett, David L Dill, Kyle Julian, and Mykel J Kochenderfer. Reluplex: An efficient smt solver for verifying deep neural networks. In International Conference on Computer Aided Verification, pages 97--117. Springer, 2017

  174. [182]

    Explanation and understanding

    Frank C Keil. Explanation and understanding. Annual Reviews of Psychology, 2006

  175. [183]

    Recurrence is required to capture the representational dynamics of the human visual system

    Tim C Kietzmann, Courtney J Spoerer, Lynn K A S \"o rensen, Radoslaw M Cichy, Olaf Hauk, and Nikolaus Kriegeskorte. Recurrence is required to capture the representational dynamics of the human visual system. Proc. Natl. Acad. Sci. U. S. A., 116 0 (43): 0 21854--21863, October 2019

  176. [184]

    Examples are not enough, learn to criticize! criticism for interpretability

    Been Kim, Rajiv Khanna, and Oluwasanmi O Koyejo. Examples are not enough, learn to criticize! criticism for interpretability. Advances in Neural Information Processing Systems (NeurIPS), 2016

  177. [185]

    Interpretability beyond feature attribution: Quantitative testing with concept activation vectors (tcav)

    Been Kim, Martin Wattenberg, Justin Gilmer, Carrie Cai, James Wexler, Fernanda Viegas, et al. Interpretability beyond feature attribution: Quantitative testing with concept activation vectors (tcav). In International conference on machine learning. Proceedings of the Internati...

  178. [186]

    Disentangling neural mechanisms for perceptual grouping

    Junkyung Kim*, Drew Linsley*, Kalpit Thakkar, and Thomas Serre. Disentangling neural mechanisms for perceptual grouping. International Conference on Representation Learning, 2020

  179. [187]

    Sunnie S. Y. Kim, Nicole Meister, Vikram V. Ramaswamy, Ruth Fong, and Olga Russakovsky. HIVE : Evaluating the human interpretability of visual explanations. In Proceedings of the IEEE European Conference on Computer Vision (ECCV), 2022

  180. [188]

    u tt, Sven D \

    Pieter-Jan Kindermans, Sara Hooker, Julius Adebayo, Maximilian Alber, Kristof T Sch \"u tt, Sven D \"a hne, Dumitru Erhan, and Been Kim. The (un) reliability of saliency methods. Explainable AI: Interpreting, Explaining and Visualizing Deep Learning, 2019

  181. [189]

    Adam: A method for stochastic optimization

    Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. Proceedings of the International Conference on Learning Representations (ICLR), 2015

  182. [190]

    Ultra-rapid object detection with saccadic eye movements: visual processing speed revisited

    Holle Kirchner and Simon J Thorpe. Ultra-rapid object detection with saccadic eye movements: visual processing speed revisited. Vision Res., 46 0 (11): 0 1762--1776, May 2006

  183. [191]

    What do saliency models predict? J

    Kathryn Koehler, Fei Guo, Sheng Zhang, and Miguel P Eckstein. What do saliency models predict? J. Vis., 14 0 (3): 0 14, March 2014

  184. [192]

    Understanding black-box predictions via influence functions

    Pang Wei Koh and Percy Liang. Understanding black-box predictions via influence functions. In Proceedings of the International Conference on Machine Learning (ICML), 2017

  185. [193]

    Big transfer ( BiT) : General visual representation learning

    Alexander Kolesnikov, Lucas Beyer, Xiaohua Zhai, Joan Puigcerver, Jessica Yung, Sylvain Gelly, and Neil Houlsby. Big transfer ( BiT) : General visual representation learning. December 2019

  186. [194]

    Big transfer (bit): General visual representation learning

    Alexander Kolesnikov, Lucas Beyer, Xiaohua Zhai, Joan Puigcerver, Jessica Yung, Sylvain Gelly, and Neil Houlsby. Big transfer (bit): General visual representation learning. In Proceedings of the IEEE European Conference on Computer Vision (ECCV), 2020

  187. [195]

    Three approaches to the quantitative definition ofinformation’

    Andrei N Kolmogorov. Three approaches to the quantitative definition ofinformation’. Problems of information transmission, 1965

  188. [196]

    The implicit function theorem: history, theory, and applications

    Steven George Krantz and Harold R Parks. The implicit function theorem: history, theory, and applications. Springer Science & Business Media, 2002

  189. [197]

    Learning multiple layers of features from tiny images, 2009

    Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images, 2009

  190. [198]

    Imagenet classification with deep convolutional neural networks

    Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. Advances in Neural Information Processing Systems (NeurIPS), 25: 0 1097--1105, 2012

  191. [199]

    Brain-Like object recognition with High-Performing shallow recurrent ANNs

    Jonas Kubilius, Martin Schrimpf, Kohitij Kar, Rishi Rajalingham, Ha Hong, Najib Majaj, Elias Issa, Pouya Bashivan, Jonathan Prescott-Roy, Kailyn Schmidt, Aran Nayebi, Daniel Bear, Daniel L Yamins, and James J DiCarlo. Brain-Like object recognition with High-Performing shallow ...

  192. [200]

    Nonlinear programming proceedings of the second berkeley symposium on mathematical statistics and probability

    Harold W Kuhn and Albert W Tucker. Nonlinear programming proceedings of the second berkeley symposium on mathematical statistics and probability. Neyman, pages 481--492, 1951

  193. [201]

    An evaluation of the human-interpretability of explanation

    Isaac Lage, Emily Chen, Jeffrey He, Menaka Narayanan, Been Kim, Sam Gershman, and Finale Doshi-Velez. An evaluation of the human-interpretability of explanation. In Workshop on Correcting and Critiquing Trends in Machine Learning, Advances in Neural Information Processing Syst...

  194. [202]

    Understanding more about human and machine attention in deep neural networks

    Qiuxia Lai, Salman Khan, Yongwei Nie, Jianbing Shen, Hanqiu Sun, and Ling Shao. Understanding more about human and machine attention in deep neural networks. June 2019

  195. [203]

    Passive attention in artificial neural networks predicts human visual selectivity

    Thomas Langlois, Haicheng Zhao, Erin Grant, Ishita Dasgupta, Tom Griffiths, and Nori Jacoby. Passive attention in artificial neural networks predicts human visual selectivity. In M Ranzato, A Beygelzimer, Y Dauphin, P S Liang, and J Wortman Vaughan, editors, Advances in Neural...

  196. [204]

    MNIST handwritten digit database, 2010

    Yann LeCun and Corinna Cortes. MNIST handwritten digit database, 2010

  197. [205]

    Deep learning

    Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 2015

  198. [206]

    Learning the parts of objects by non-negative matrix factorization

    Daniel D Lee and H Sebastian Seung. Learning the parts of objects by non-negative matrix factorization. Nature, 1999

  199. [207]

    Superhuman accuracy on the SNEMI3D connectomics challenge

    Kisuk Lee, Jonathan Zung, Peter Li, Viren Jain, and H Sebastian Seung. Superhuman accuracy on the SNEMI3D connectomics challenge. May 2017

  200. [208]

    Introduction to quasi-Monte Carlo integration and applications

    Gunther Leobacher and Friedrich Pillichshammer. Introduction to quasi-Monte Carlo integration and applications. Springer, 2014

  201. [209]

    Break it down: Evidence for structural compositionality in neural networks

    Michael Lepori, Thomas Serre, and Ellie Pavlick. Break it down: Evidence for structural compositionality in neural networks. Advances in Neural Information Processing Systems (NeurIPS), 2024

  202. [210]

    Universal sequential search problems

    Leonid Anatolevich Levin. Universal sequential search problems. Problemy peredachi informatsii, 1973

  203. [211]

    Understanding neural networks through representation erasure, 2016

    Jiwei Li, Will Monroe, and Dan Jurafsky. Understanding neural networks through representation erasure, 2016

  204. [212]

    The similarity metric

    Ming Li, Xin Chen, Xin Li, Bin Ma, and Paul MB Vit \'a nyi. The similarity metric. IEEE transactions on Information Theory, 50 0 (12): 0 3250--3264, 2004

  205. [213]

    Feature pyramid networks for object detection

    T Lin, P Doll \'a r, R Girshick, K He, B Hariharan, and S Belongie. Feature pyramid networks for object detection. In 2017 IEEE Conference on Computer Vision and Pattern Recognition ( CVPR ) , pages 936--944, July 2017

  206. [214]

    Microsoft coco: Common objects in context

    Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Doll \'a r, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In Proceedings of the IEEE European Conference on Computer Vision (ECCV). Springer, 2014

  207. [215]

    Do explanations reflect decisions? a machine-centric strategy to quantify the performance of explainability algorithms

    Zhong Qiu Lin, Mohammad Javad Shafiee, Stanislav Bochkarev, Michael St Jules, Xiao Yu Wang, and Alexander Wong. Do explanations reflect decisions? a machine-centric strategy to quantify the performance of explainability algorithms. In Advances in Neural Information Processing ...

  208. [216]

    What are the visual features underlying human versus machine vision? In 2017 IEEE International Conference on Computer Vision Workshops ( ICCVW ) , pages 2706--2714, October 2017 a

    D Linsley, S Eberhardt, T Sharma, P Gupta, and T Serre. What are the visual features underlying human versus machine vision? In 2017 IEEE International Conference on Computer Vision Workshops ( ICCVW ) , pages 2706--2714, October 2017 a

  209. [217]

    What are the visual features underlying human versus machine vision? January 2017 b

    Drew Linsley, Sven Eberhardt, Tarun Sharma, Pankaj Gupta, and Thomas Serre. What are the visual features underlying human versus machine vision? January 2017 b

  210. [218]

    Learning what and where to attend with humans in the loop

    Drew Linsley, Dan Shiebler, Sven Eberhardt, and Thomas Serre. Learning what and where to attend with humans in the loop. In International Conference on Learning Representations, 2019 a

  211. [219]

    Learning what and where to attend

    Drew Linsley, Dan Shiebler, Sven Eberhardt, and Thomas Serre. Learning what and where to attend. In Proceedings of the International Conference on Learning Representations (ICLR), 2019 b

  212. [220]

    Stable and expressive recurrent vision models

    Drew Linsley, Alekh Karkada Ashok, Lakshmi Narasimhan Govindarajan, Rex Liu, and Thomas Serre. Stable and expressive recurrent vision models. Advances in Neural Information Processing Systems (NeurIPS), 2020 a

  213. [221]

    Recurrent neural circuits for contour detection

    Drew Linsley, Junkyung Kim, Alekh Ashok, and Thomas Serre. Recurrent neural circuits for contour detection. International Conference on Learning Representations, 2020 b

  214. [222]

    Tracking without re-recognition in humans and machines

    Drew Linsley, Girik Malik, Junkyung Kim, Lakshmi N Govindarajan, Ennio Mingolla, and Thomas Serre. Tracking without re-recognition in humans and machines. May 2021 a

  215. [223]

    Superhuman cell death detection with biomarker-optimized neural networks

    Jeremy W Linsley, Drew A Linsley, Josh Lamstein, Gennadi Ryan, Kevan Shah, Nicholas A Castello, Viral Oza, Jaslin Kalra, Shijie Wang, Zachary Tokuno, Ashkan Javaherian, Thomas Serre, and Steven Finkbeiner. Superhuman cell death detection with biomarker-optimized neural network...

  216. [224]

    A ConvNet for the 2020s

    Zhuang Liu, Hanzi Mao, Chao-Yuan Wu, Christoph Feichtenhofer, Trevor Darrell, and Saining Xie. A ConvNet for the 2020s. Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), January 2022 a

  217. [225]

    A convnet for the 2020s

    Zhuang Liu, Hanzi Mao, Chao-Yuan Wu, Christoph Feichtenhofer, Trevor Darrell, and Saining Xie. A convnet for the 2020s. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2022 b

  218. [226]

    The structure and function of explanations

    Tania Lombrozo. The structure and function of explanations. Trends in cognitive sciences, 2006

  219. [227]

    A unified approach to interpreting model predictions

    Scott Lundberg and Su-In Lee. A unified approach to interpreting model predictions. In Advances in Neural Information Processing Systems (NIPS), 2017

  220. [228]

    Maas, Raymond E

    Andrew L. Maas, Raymond E. Daly, Peter T. Pham, Dan Huang, Andrew Y. Ng, and Christopher Potts. Learning word vectors for sentiment analysis. In Proceedings of the Annual Meeting of the Association for Computational Linguistics (ACL), 2011 a

  221. [229]

    Maas, Raymond E

    Andrew L. Maas, Raymond E. Daly, Peter T. Pham, Dan Huang, Andrew Y. Ng, and Christopher Potts. Learning word vectors for sentiment analysis. In Proceedings of the Annual Meeting of the Association for Computational Linguistics (ACL), 2011 b

  222. [230]

    Teaching categories to human learners with visual explanations

    Oisin Mac Aodha, Shihan Su, Yuxin Chen, Pietro Perona, and Yisong Yue. Teaching categories to human learners with visual explanations. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2018

  223. [231]

    Towards deep learning models resistant to adversarial attacks

    Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu. Towards deep learning models resistant to adversarial attacks. Proceedings of the International Conference on Learning Representations (ICLR), 2018

  224. [232]

    Understanding deep image representations by inverting them

    Aravindh Mahendran and Andrea Vedaldi. Understanding deep image representations by inverting them. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 5188--5196, 2015

  225. [233]

    Sparse modeling for image and vision processing

    Julien Mairal, Francis Bach, Jean Ponce, et al. Sparse modeling for image and vision processing. Foundations and Trends in Computer Graphics and Vision , 8 0 (2-3): 0 85--283, 2014

  226. [234]

    K-sparse autoencoders

    Alireza Makhzani and Brendan Frey. K-sparse autoencoders. Proceedings of the International Conference on Learning Representations (ICLR), 2014

  227. [235]

    White Paper Machine Learning in Certified Systems , 2021

    Franck Mamalet, Eric Jenn, Gregory Flandin, Herv \'e Delseny, Christophe Gabreau, Adrien Gauffriau, Bernard Beaudouin, Ludovic Ponsolle, Lucian Alecu, Hugues Bonnin, Brice Beltran, Didier Duchel, Jean-Brice Ginestet, Alexandre Hervieu, Sylvain Pasquet, Kevin Delmas, Claire Pag...

  228. [236]

    The role of visual salience in directing eye movements in visual object agnosia

    Sabira K Mannan, Christopher Kennard, and Masud Husain. The role of visual salience in directing eye movements in visual object agnosia. Curr. Biol., 19 0 (6): 0 R247--8, March 2009

  229. [237]

    Calculations of sobol indices for the gaussian process metamodel

    Amandine Marrel, Bertrand Iooss, Beatrice Laurent, and Olivier Roustant. Calculations of sobol indices for the gaussian process metamodel. Reliability Engineering & System Safety, 2009

  230. [238]

    A proposal for the dartmouth summer research project on artificial intelligence, august 31, 1955

    John McCarthy, Marvin L Minsky, Nathaniel Rochester, and Claude E Shannon. A proposal for the dartmouth summer research project on artificial intelligence, august 31, 1955. 1956

  231. [239]

    Umap: Uniform manifold approximation and projection for dimension reduction

    Leland McInnes, John Healy, and James Melville. Umap: Uniform manifold approximation and projection for dimension reduction. arXiv preprint arXiv:1802.03426, 2018

  232. [240]

    XNect : real-time multi-person 3D motion capture with a single RGB camera

    Dushyant Mehta, Oleksandr Sotnychenko, Franziska Mueller, Weipeng Xu, Mohamed Elgharib, Pascal Fua, Hans-Peter Seidel, Helge Rhodin, Gerard Pons-Moll, and Christian Theobalt. XNect : real-time multi-person 3D motion capture with a single RGB camera. ACM Trans. Graph., 39 0 (4)...

  233. [241]

    Explanation in artificial intelligence: Insights from the social sciences

    Tim Miller. Explanation in artificial intelligence: Insights from the social sciences. Artificial Intelligence, 267: 0 1--38, February 2019

  234. [242]

    Spectral normalization for generative adversarial networks

    Takeru Miyato, Toshiki Kataoka, Masanori Koyama, and Yuichi Yoshida. Spectral normalization for generative adversarial networks. In Proceedings of the International Conference on Learning Representations (ICLR), 2018

  235. [243]

    Sample efficient detection and classification of adversarial attacks via self-supervised embeddings

    Mazda Moayeri and Soheil Feizi. Sample efficient detection and classification of adversarial attacks via self-supervised embeddings. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2021

  236. [244]

    Explicit tradeoffs between adversarial and natural distributional robustness

    Mazda Moayeri, Kiarash Banihashem, and Soheil Feizi. Explicit tradeoffs between adversarial and natural distributional robustness. In Advances in Neural Information Processing Systems (NeurIPS), 2022 a

  237. [245]

    A comprehensive study of image classification model sensitivity to foregrounds, backgrounds, and visual attributes

    Mazda Moayeri, Phillip Pope, Yogesh Balaji, and Soheil Feizi. A comprehensive study of image classification model sensitivity to foregrounds, backgrounds, and visual attributes. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2022 b

  238. [246]

    Hard imagenet: Segmentations for objects with strong spurious cues

    Mazda Moayeri, Sahil Singla, and Soheil Feizi. Hard imagenet: Segmentations for objects with strong spurious cues. In Advances in Neural Information Processing Systems (NeurIPS), 2022 c

  239. [247]

    M \'e moire sur la th \'e orie des d \'e blais et des remblais

    Gaspard Monge. M \'e moire sur la th \'e orie des d \'e blais et des remblais. Mem. Math. Phys. Acad. Royale Sci., pages 666--704, 1781

  240. [248]

    Inceptionism: Going deeper into neural networks

    Alexander Mordvintsev, Christopher Olah, and Mike Tyka. Inceptionism: Going deeper into neural networks. https://blog.research.google/2015/06/inceptionism-going-deeper-into-neural.html?m=1, 2015

  241. [249]

    Differentiable image parameterizations

    Alexander Mordvintsev, Nicola Pezzotti, Ludwig Schubert, and Chris Olah. Differentiable image parameterizations. Distill, 2018

  242. [250]

    When does label smoothing help? June 2019

    Rafael M \"u ller, Simon Kornblith, and Geoffrey Hinton. When does label smoothing help? June 2019

  243. [251]

    Rapid object categorization without conscious recognition: aneuropsychological study

    Boucart Muriel, Thorpe Simon, and Kirschner Holle. Rapid object categorization without conscious recognition: aneuropsychological study. J. Vis., 7 0 (9): 0 1033--1033, June 2007

  244. [252]

    Improving neural network representations using human similarity judgments

    Lukas Muttenthaler, Lorenz Linhardt, Jonas Dippel, Robert A Vandermeulen, Katherine Hermann, Andrew Lampinen, and Simon Kornblith. Improving neural network representations using human similarity judgments. Advances in Neural Information Processing Systems (NeurIPS), 2024

  245. [253]

    Gradient strikes back: How filtering out high frequencies improves explanations

    Sabine Muzellec, Leo Andeol, Thomas Fel, Rufin VanRullen, and Thomas Serre. Gradient strikes back: How filtering out high frequencies improves explanations. arXiv preprint, 2023

  246. [254]

    Evaluating prediction-time batch normalization for robustness under covariate shift

    Zachary Nado, Shreyas Padhy, D Sculley, Alexander D'Amour, Balaji Lakshminarayanan, and Jasper Snoek. Evaluating prediction-time batch normalization for robustness under covariate shift. In WorkshopProceedings of the International Conference on Machine Learning (ICML), 2020

  247. [255]

    Exploring alignment of representations with human perception

    Vedant Nanda, Ayan Majumdar, Camila Kolling, John P Dickerson, Krishna P Gummadi, Bradley C Love, and Adrian Weller. Exploring alignment of representations with human perception. Proceedings of the AAAI Conference on Artificial Intelligence (AAAI), 2021

  248. [256]

    How do humans understand explanations from machine learning systems? an evaluation of the human-interpretability of explanation, 2018

    Menaka Narayanan, Emily Chen, Jeffrey He, Been Kim, Sam Gershman, and Finale Doshi-Velez. How do humans understand explanations from machine learning systems? an evaluation of the human-interpretability of explanation, 2018

  249. [257]

    Exploring generalization in deep learning

    Behnam Neyshabur, Srinadh Bhojanapalli, David McAllester, and Nathan Srebro. Exploring generalization in deep learning. In Advances in Neural Information Processing Systems (NIPS), 2017

  250. [258]

    Deep neural networks are easily fooled: High confidence predictions for unrecognizable images

    Anh Nguyen, Jason Yosinski, and Jeff Clune. Deep neural networks are easily fooled: High confidence predictions for unrecognizable images. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 427--436, 2015

  251. [259]

    Synthesizing the preferred inputs for neurons in neural networks via deep generator networks

    Anh Nguyen, Alexey Dosovitskiy, Jason Yosinski, Thomas Brox, and Jeff Clune. Synthesizing the preferred inputs for neurons in neural networks via deep generator networks. Advances in neural information processing systems, 29, 2016 a

  252. [260]

    Multifaceted feature visualization: Uncovering the different types of features learned by each neuron in deep neural networks

    Anh Nguyen, Jason Yosinski, and Jeff Clune. Multifaceted feature visualization: Uncovering the different types of features learned by each neuron in deep neural networks. Visualization for Deep Learning workshop, Proceedings of the International Conference on Machine Learning ...

  253. [261]

    Plug & play generative networks: Conditional iterative generation of images in latent space

    Anh Nguyen, Jeff Clune, Yoshua Bengio, Alexey Dosovitskiy, and Jason Yosinski. Plug & play generative networks: Conditional iterative generation of images in latent space. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2017

  254. [262]

    Understanding neural networks via feature visualization: A survey

    Anh Nguyen, Jason Yosinski, and Jeff Clune. Understanding neural networks via feature visualization: A survey. arXiv preprint arXiv:1904.08939, 2019

  255. [263]

    Comparing automatic and human evaluation of local explanations for text classification

    Dong Nguyen. Comparing automatic and human evaluation of local explanations for text classification. In Proceedings of the Annual Meeting of the Association for Computational Linguistics (ACL), 2018

  256. [264]

    The effectiveness of feature attribution methods and its correlation with automatic evaluation scores

    Giang Nguyen, Daeyoung Kim, and Anh Nguyen. The effectiveness of feature attribution methods and its correlation with automatic evaluation scores. Advances in Neural Information Processing Systems (NeurIPS), 2021

  257. [265]

    Making sense of dependence: Efficient black-box explanations using dependence measure

    Paul Novello, Thomas Fel, and David Vigouroux. Making sense of dependence: Efficient black-box explanations using dependence measure. In Advances in Neural Information Processing Systems (NeurIPS), 2022

  258. [266]

    Feature visualization

    Chris Olah, Alexander Mordvintsev, and Ludwig Schubert. Feature visualization. Distill, 2017

  259. [267]

    The importance of phase in signals

    A V Oppenheim and J S Lim. The importance of phase in signals. Proc. IEEE, 69 0 (5): 0 529--541, May 1981 a

  260. [268]

    The importance of phase in signals

    Alan V Oppenheim and Jae S Lim. The importance of phase in signals. Proceedings of the IEEE, 1981 b

  261. [269]

    Generative causal explanations of black-box classifiers

    Matthew O'Shaughnessy, Gregory Canal, Marissa Connor, Mark Davenport, and Christopher Rozell. Generative causal explanations of black-box classifiers. In Advances in Neural Information Processing Systems (NeurIPS), 2020

  262. [270]

    Training language models to follow instructions with human feedback

    Long Ouyang, Jeffrey Wu, Xu Jiang, Diogo Almeida, Carroll Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, et al. Training language models to follow instructions with human feedback. Advances in Neural Information Processing Systems (NeurIPS), 2022

  263. [271]

    Better estimation of small sobol'sensitivity indices

    Art B Owen. Better estimation of small sobol'sensitivity indices. ACM Transactions on Modeling and Computer Simulation (TOMACS), 23 0 (2): 0 1--17, 2013

  264. [272]

    Prevalence of neural collapse during the terminal phase of deep learning training

    Vardan Papyan, XY Han, and David L Donoho. Prevalence of neural collapse during the terminal phase of deep learning training. Proceedings of the National Academy of Sciences, 2020

  265. [273]

    Listen to interpret: Post-hoc interpretability for audio networks with nmf

    Jayneel Parekh, Sanjeel Parekh, Pavlo Mozharovskyi, Florence d'Alch \'e Buc, and Ga \"e l Richard. Listen to interpret: Post-hoc interpretability for audio networks with nmf. Advances in Neural Information Processing Systems (NeurIPS), 2022

  266. [274]

    Pytorch: An imperative style, high-performance deep learning library

    Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zeming Lin, Natalia Gimelshein, Luca Antiga, et al. Pytorch: An imperative style, high-performance deep learning library. Advances in Neural Information Processing Systems (Neu...

  267. [275]

    Training robust neural networks using lipschitz bounds, 2020

    Patricia Pauli, Anne Koch, Julian Berberich, and Frank Allgöwer. Training robust neural networks using lipschitz bounds, 2020

  268. [276]

    Scikit-learn: Machine learning in python

    Fabian Pedregosa, Ga \"e l Varoquaux, Alexandre Gramfort, Vincent Michel, Bertrand Thirion, Olivier Grisel, Mathieu Blondel, Peter Prettenhofer, Ron Weiss, Vincent Dubourg, et al. Scikit-learn: Machine learning in python. The Journal of Machine Learning Research (JMLR), 2011

  269. [277]

    Evaluating (and improving) the correspondence between deep neural networks and human representations

    Joshua C Peterson, Joshua T Abbott, and Thomas L Griffiths. Evaluating (and improving) the correspondence between deep neural networks and human representations. Cogn. Sci., 42 0 (8): 0 2648--2669, November 2018

  270. [278]

    Rise: Randomized input sampling for explanation of black-box models

    Vitali Petsiuk, Abir Das, and Kate Saenko. Rise: Randomized input sampling for explanation of black-box models. In Proceedings of the British Machine Vision Conference (BMVC), 2018

  271. [279]

    Computational optimal transport

    Gabriel Peyr \'e and Marco Cuturi. Computational optimal transport. Foundations and Trends in Machine Learning, 2018

  272. [280]

    Evaluating neural network explanation methods using hybrid documents and morphological agreement

    Nina Poerner, Benjamin Roth, and Hinrich Sch \"u tze. Evaluating neural network explanation methods using hybrid documents and morphological agreement. Proceedings of the Annual Meeting of the Association for Computational Linguistics (ACL), 2018

  273. [281]

    Orienting of attention

    Michael I Posner. Orienting of attention. Q. J. Exp. Psychol., 32 0 (1): 0 3--25, February 1980

  274. [282]

    Evaluating explanations: How much do explanations from the teacher aid students? In Proceedings of the Annual Meeting of the Association for Computational Linguistics (ACL), 2021

    Danish Pruthi, Bhuwan Dhingra, Livio Baldini Soares, Michael Collins, Zachary C Lipton, Graham Neubig, and William W Cohen. Evaluating explanations: How much do explanations from the teacher aid students? In Proceedings of the Annual Meeting of the Association for Computationa...

  275. [283]

    A comprehensive comparison of total-order estimators for global sensitivity analysis

    Arnald Puy, William Becker, Samuele Lo Piano, and Andrea Saltelli. A comprehensive comparison of total-order estimators for global sensitivity analysis. International Journal for Uncertainty Quantification, 2020

  276. [284]

    Learning transferable visual models from natural language supervision

    Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, Gretchen Krueger, and Ilya Sutskever. Learning transferable visual models from natural language supervision. February 2021

  277. [285]

    Designing network design spaces

    Ilija Radosavovic, Raj Prateek Kosaraju, Ross Girshick, Kaiming He, and Piotr Doll \'a r. Designing network design spaces. March 2020

  278. [286]

    Using data imputation for signal separation in high-contrast imaging

    Bin Ren, Laurent Pueyo, Christine Chen, \'E lodie Choquet, John H Debes, Gaspard Duch \^e ne, Fran c ois M \'e nard, and Marshall D Perrin. Using data imputation for signal separation in high-contrast imaging. The Astrophysical Journal, 892 0 (2): 0 74, 2020

  279. [287]

    why should i trust you?

    Marco Tulio Ribeiro, Sameer Singh, and Carlos Guestrin. "why should i trust you?": Explaining the predictions of any classifier. In Knowledge Discovery and Data Mining (KDD), 2016

  280. [288]

    Anchors: High-precision model-agnostic explanations

    Marco Tulio Ribeiro, Sameer Singh, and Carlos Guestrin. Anchors: High-precision model-agnostic explanations. In Proceedings of the AAAI Conference on Artificial Intelligence (AAAI), 2018

  281. [289]

    Irof: a low resource evaluation metric for explanation methods

    Laura Rieger and Lars Kai Hansen. Irof: a low resource evaluation metric for explanation methods. In Workshop, Proceedings of the International Conference on Learning Representations (ICLR), 2020

  282. [290]

    Enriching ImageNet with human similarity judgments and psychological embeddings

    Brett D Roads and Bradley C Love. Enriching ImageNet with human similarity judgments and psychological embeddings. November 2020

  283. [291]

    Perturbation-based explanations of prediction models

    Marko Robnik- S ikonja and Marko Bohanec. Perturbation-based explanations of prediction models. In Human and machine learning Springer International Publishing, 2018

  284. [292]

    The implementation of visual routines

    P R Roelfsema, V A Lamme, and H Spekreijse. The implementation of visual routines. Vision Res., 40 0 (10-12): 0 1385--1411, 2000

  285. [293]

    Stop explaining black box machine learning models for high stakes decisions and use interpretable models instead

    Cynthia Rudin. Stop explaining black box machine learning models for high stakes decisions and use interpretable models instead. Nature machine intelligence, 2019

  286. [294]

    Explainable ai (xai): A systematic meta-survey of current challenges and future opportunities

    Waddah Saeed and Christian Omlin. Explainable ai (xai): A systematic meta-survey of current challenges and future opportunities. Knowledge-Based Systems, 2023

  287. [295]

    Weight normalization: A simple reparameterization to accelerate training of deep neural networks

    Tim Salimans and Durk P Kingma. Weight normalization: A simple reparameterization to accelerate training of deep neural networks. In Advances in Neural Information Processing Systems (NeurIPS), 2016

  288. [296]

    A convex relaxation barrier to tight robustness verification of neural networks

    Hadi Salman, Greg Yang, Huan Zhang, Cho-Jui Hsieh, and Pengchuan Zhang. A convex relaxation barrier to tight robustness verification of neural networks. Advances in Neural Information Processing Systems (NeurIPS), 2019

  289. [297]

    Do adversarially robust ImageNet models transfer better? July 2020

    Hadi Salman, Andrew Ilyas, Logan Engstrom, Ashish Kapoor, and Aleksander Madry. Do adversarially robust ImageNet models transfer better? July 2020

  290. [298]

    Making best use of model evaluations to compute sensitivity indices

    Andrea Saltelli. Making best use of model evaluations to compute sensitivity indices. Computer physics communications, 2002

  291. [299]

    Variance based sensitivity analysis of model output

    Andrea Saltelli, Paola Annoni, Ivano Azzini, Francesca Campolongo, Marco Ratto, and Stefano Tarantola. Variance based sensitivity analysis of model output. design and estimator for the total sensitivity index. Computer physics communications, 2010

  292. [300]

    Evaluating the visualization of what a deep neural network has learned

    Wojciech Samek, Alexander Binder, Grégoire Montavon, Sebastian Bach, and Klaus-Robert Müller. Evaluating the visualization of what a deep neural network has learned. In IEEE Transactions on Neural Networks and Learning Systems (TNNLS), 2015

Pith tools

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