Pith. sign in

REVIEW 3 major objections 4 minor 2 cited by

B-XAIC Dataset: Benchmarking Explainable AI for Graph Neural Networks Using Chemical Data

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

Pith's one-line read Even when a graph neural network nails a molecular task, its explanations routinely point at the wrong atoms.

desk verdict A genuinely useful molecular explainability benchmark with a thorough evaluation, but the headline claim overreaches because the paper never shows that its high-F1 GNNs reason with the exact annotated substructures. read the letter →

arxiv 2505.22252 v1 pith:MNO72Y5V submitted 2025-05-28 cs.LG cs.CE

classification cs.LGcs.CE
keywords explainableAIgraphneuralnetworksbenchmarkmoleculargraphsground-truthexplanationschemicalsubstructuresnullsubgraph
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

This paper argues that current explainers for graph neural networks are unreliable in the molecular domain: they fail to highlight the chemical substructures that actually determine a molecule's predicted label, even when the model itself is highly accurate. To make this failure measurable, the authors introduce B-XAIC, a benchmark of 50,000 small molecules from a public drug-like database, with seven structure-detection tasks whose ground-truth rationales are known atom- and edge-level masks. The evaluation separates cases where a specific subgraph is the explanation from cases where no substructure is more important than any other, allowing direct accuracy-based scoring. When nine explanation methods are tested against a GIN model that exceeds 98% F1 on every task, the best average subgraph-localization AUROC is only 0.82 at the node level and 0.65 at the edge level, with several popular methods falling near chance.

What carries the argument

The benchmark's central object is the B-XAIC dataset, which pairs 50,000 real drug-like molecules with seven binary tasks defined by the presence of chemical substructures: a single boron or phosphorus atom, any halogen, an indole ring, a PAINS alert pattern, a ring count over four, and a maximum ring size over six. Each molecule carries ground-truth atom and edge explanation masks, and the evaluation splits explanations into two regimes: subgraph explanations, where a specific substructure must be highlighted and is scored by AUROC, and null explanations, where no substructure is relevant and the explanation must be uniform, scored by an interquartile-range outlier test. This two-regime design is what lets the benchmark distinguish 'wrong localization' from 'uninformative noise,' avoiding the thresholding problem of prior benchmarks.

What would settle it

Train a GIN on B-XAIC tasks, take positive molecules, and mask or remove the atoms belonging to the ground-truth substructure; if the predicted probability stays high after masking, the model is using other features and the explainers' failures would not demonstrate an XAI deficiency, whereas if predictions collapse, the explainers are truly failing to find the causal substructure.

Watch

Extended reading notes

Core claim

The central discovery is that explanation quality and prediction accuracy decouple in molecular GNNs: a model can be nearly perfect at a substructure-detection task while every tested explainer fails to recover that substructure. On B-XAIC, the GIN architecture reaches F1 scores above 98% across all seven tasks, yet the average subgraph-localization AUROC for the best node explainer is 0.82 and for the best edge explainer is 0.65, with many methods scoring close to chance on the null-explanation half of the benchmark. The paper attributes this systematic failure to the architectural principles of GNNs, arguing that message-passing diffusion impairs precise localization of salient features, and it positions B-XAIC as a resource to expose and address this gap.

Load-bearing premise

The benchmark assumes that a model with high F1 on a structure-detection task is actually predicting from the labeled substructure, so when an explainer does not highlight that substructure, the failure is attributed to the explainer rather than to the model having learned some other shortcut.

Editorial extensions

If this is right

  • If correct, B-XAIC provides a ready testbed for any new XAI method targeting molecular GNNs, making it straightforward to check whether an explainer recovers known chemical substructures.
  • The reported decoupling implies that high task accuracy cannot be used as evidence that an explainer is faithful, so benchmarks with ground-truth rationales become necessary for validation.
  • The null-explanation scoring regime offers a template for evaluating explanations in situations where no single element is more important than others, which many existing evaluation metrics handle poorly.
  • The results suggest that post-hoc gradient and mask-based explainers, despite their popularity, may need architectural changes or additional constraints to localize substructures in message-passing networks.
  • The benchmark can also stress-test self-interpretable models: prototype-based GNNs underperform on ring-counting tasks, indicating that inherently interpretable designs are not automatically more faithful.

Reading between the lines

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

  • A natural next step would be to use B-XAIC to test whether explanations improve when GNNs are trained with explicit substructure supervision or when message passing is restricted to local neighborhoods; the paper does not run such experiments.
  • The same evaluation design could be extended to other graph domains with known rationales, such as citation or social graphs, which would show whether the observed decoupling is chemical in origin or a general property of message-passing architectures.
  • Because the benchmark's tasks are all binary substructure-presence problems, a harder extension would be multi-class or multi-label tasks where overlapping rationales must be weighed, which the paper lists as ongoing work but does not validate.
  • The paper's own limitation suggests a concrete diagnostic: measuring how much predicted probabilities drop when the ground-truth substructure is masked would separate explainer failure from model shortcut learning, a distinction the benchmark alone cannot draw.
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 / 4 minor

Summary. The paper introduces B-XAIC, a benchmark of 50K molecules sampled from ChEMBL with seven structure-detection tasks (single-atom presence, halogen presence, indole, PAINS, ring counting, and large-ring detection), each providing ground-truth node and edge rationales. The evaluation protocol distinguishes null explanations (NE), scored by a binary IQR outlier test, from subgraph explanations (SE), scored by AUROC. The authors evaluate eight explainers across GCN, GAT, GIN, and ProtGNN backbones and report that GIN achieves very high F1 scores on all tasks while most explainers obtain moderate or low explanation scores, especially on ring-related tasks. The paper concludes that current XAI techniques consistently fail to identify the relevant molecular structures and that B-XAIC is a needed benchmark for developing better GNN explainers.

Significance. If the central finding were fully established, B-XAIC would be a valuable real-world benchmark for GNN explanation evaluation, and the reported failure of existing explainers on simple substructure-recovery tasks would be an important result for the field. The dataset and code are released openly, the tasks are grounded in chemically meaningful patterns, and the NE/SE distinction is a useful design idea that goes beyond top-k thresholding. The paper also provides a broad evaluation across several architectures and explainers. However, the headline conclusion depends on an untested premise: that high predictive accuracy implies the GNN uses exactly the annotated substructure. The paper's own Limitations section concedes this confound, and the evaluation lacks random or uniform baselines and a robustness analysis of the binary NE metric. The benchmark itself remains useful as a resource, but the paper's central claim needs additional support or a more conditional formulation.

major comments (3)
  1. [Section 4.3 and Section 4.2] The conclusion that 'the explanations generated by the explainers consistently fail to properly identify and highlight the relevant molecular structures' rests on the assumption that a GIN with F1 above 98% on each task makes predictions by detecting exactly the substructure used to define the label. This premise is not tested. The Limitations section explicitly concedes: 'We cannot definitively guarantee that the trained models base their predictions on the intended underlying chemical principles.' For PAINS, rings-count, and rings-max in particular, high F1 is achievable through correlated shortcuts such as atom-type frequencies, molecular size, or generic ring counts, none of which require localizing the annotated pattern. If the model uses a shortcut, a faithful explainer would highlight the shortcut, not the ground-truth substructure, and the low SE AUROC would measure disagreement between the explainer and the label-derived ground truth rather than explainer unfaithfulness. I request either (i) experiments that test the premise, for example by measuring how predictions change when the target substructure is masked or removed, by training on label-permuted or shortcut-controlled splits, or by adding a random/uniform attribution baseline; or (ii) a reformulation of the conclusion as conditional on the model using the intended substructure.
  2. [Section 3.2 and Appendix A.4] The NE metric is a binary IQR outlier test with a hand-chosen 1.5 multiplier: a prediction is scored 1 if no outliers are detected and 0 otherwise. This is a coarse, distribution-dependent measure, and no random or uniform baseline is provided for comparison. A method that outputs a perfectly flat attribution will trivially pass, while a method with slightly heavy tails but otherwise reasonable behavior may fail, and the binary pass/fail outcome discards calibration information. The choice of 1.5 is arbitrary and no sensitivity analysis is reported. I recommend reporting NE with continuous alternatives (e.g., variance, entropy, or a Kolmogorov-Smirnov test against uniformity), showing how results vary with the IQR multiplier, and including a random attribution baseline so that NE scores can be interpreted.
  3. [Section 3.2 and Table 1] The NE/SE categorization for the counting tasks is not clearly specified and the Table 1 caption is inconsistent with the body text. The caption states 'SE denotes relevant subgraphs in positive instances, while NE denotes negative instances without explanations,' but for rings-count and rings-max the reported NE proportions are only 1.49% and 1.35%, respectively, which implies that most negative examples are assigned subgraph explanations rather than null explanations. It is not explained how the relevant substructures are defined for negative examples in these tasks, for example whether all rings are annotated in a molecule with three small rings, or how overlapping ring systems are handled. This ambiguity directly affects the construction of the SE ground truth and therefore the interpretability of the SE AUROC values for two of the seven tasks.
minor comments (4)
  1. [Section 2 (Related Work)] In the description of Alkane-Carbonyl, the text reads 'alkane (F-) and carbonyl (C=O) groups,' but the parenthetical '(F-)' appears to be a copy-paste error from Fluoride-Carbonyl; alkane groups should not be denoted with an F- label.
  2. [Section 3.1] The first two tasks are described as 'Detection of organoboron and organophosphorus compounds,' but the actual task is the presence of a single boron or phosphorus atom; consider renaming these to 'boron atom presence' and 'phosphorus atom presence' for accuracy.
  3. [Section 4.2] The text says the tasks are 'synthetic tasks' and that GIN achieves 'near-perfect performance across our synthetic tasks'; the B-XAIC tasks use real molecular graphs with pattern-derived labels, so 'synthetic tasks' is misleading and should be replaced with something like 'structure-detection tasks.'
  4. [Section 3.2] The definition of NE as 'no nodes or edges are more important than others' is intuitive for single-atom tasks but needs a precise operational rule for ring-counting tasks; please specify the exact annotation procedure for negative examples in rings-count and rings-max.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity; B-XAIC is an empirical benchmark whose evaluation scores are measured outcomes, and the acknowledged model-usage confound is a validity limitation, not a circular argument.

full rationale

B-XAIC is an empirical benchmark, not a derivation. The ground-truth rationales are generated from the same chemical pattern definitions that produce the labels; this is a standard design property of any substructure-detection benchmark and does not make the explanation evaluation circular, because explainer outputs are computed independently of those definitions. No parameter is fitted to the SE/NE scores and then reported as a prediction; the SE and NE scores are direct measured outcomes on held-out test data. The paper's Limitations section explicitly concedes that high-F1 models may not rely on the intended substructure ('We cannot definitively guarantee that the trained models base their predictions on the intended underlying chemical principles'), which is a threat to construct validity of the headline interpretation, not a circularity. The only author-overlapping citation (Rymarczyk et al., Progrest, ref [29]) is used in related work for prototype models and is not load-bearing. No equation or definition reduces a claimed result to its inputs, and no self-citation is used to justify the benchmark's central claim. Therefore the paper is self-contained against external benchmarks and warrants a circularity score of 0.

Assumptions & free parameters 1 free parameters · 3 assumptions · 1 invented entities

No free parameters are fitted to make the benchmark conclusions hold; the only hand-chosen constant is the 1.5 IQR multiplier used to define null-explanation correctness. The central load-bearing assumptions are domain assumptions about the relation between model accuracy and feature use, and about the validity of the IQR outlier rule. No physical entities are invented; the NE/SE dichotomy is a new evaluation construct rather than an empirical discovery.

free parameters (1)
  • IQR outlier multiplier = 1.5
    NE evaluation marks an explanation as wrong if any attribution is an outlier by Q1 - 1.5*IQR or Q3 + 1.5*IQR. The 1.5 multiplier is a standard convention but is still a hand-chosen threshold that directly determines all NE scores.
assumptions (3)
  • domain assumption High task accuracy implies the model's predictions are based on the intended chemical substructures.
    Used implicitly when interpreting low explanation scores as explainer failure. The paper's Limitations section concedes this is not guaranteed, saying suboptimal explanation scores could come from the model not learning the expected structural features.
  • domain assumption IQR outlier detection is a valid criterion for a correct null explanation.
    Section 3.2 defines NE correctness solely by absence of IQR outliers; no external validation or baseline is provided to show that this matches human notions of 'no substructure highlighted'.
  • domain assumption Programmatic substructure matching for indoles, PAINS, and rings produces correct ground-truth explanations.
    Section 3.1 builds labels and explanation masks from the same chemical pattern definitions, so correctness of the masks is definitional. This is standard for benchmark construction but is a domain assumption about chemical validity.
invented entities (1)
  • Null explanation (NE) vs. subgraph explanation (SE) protocol
    purpose: A two-category evaluation framework for cases where no substructure should be highlighted versus cases where a specific subgraph is the ground-truth explanation.
    Introduced in Section 3.2 as a new evaluation construct. There is no independent empirical validation that the IQR-outlier definition of NE measures explanation faithfulness rather than mere output smoothness.

how reviews work

0 comments
Cite this review

Pith. "Pith review of B-XAIC Dataset: Benchmarking Explainable AI for Graph Neural Networks Using Chemical Data." pith.science (2026). https://pith.science/paper/MNO72Y5V

@misc{pith2026250522252,
  author       = {Pith},
  title        = {Pith review of: B-XAIC Dataset: Benchmarking Explainable AI for Graph Neural Networks Using Chemical Data},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/MNO72Y5V}},
  note         = {Machine review of arXiv:2505.22252}
}
read the original abstract

Understanding the reasoning behind deep learning model predictions is crucial in cheminformatics and drug discovery, where molecular design determines their properties. However, current evaluation frameworks for Explainable AI (XAI) in this domain often rely on artificial datasets or simplified tasks, employing data-derived metrics that fail to capture the complexity of real-world scenarios and lack a direct link to explanation faithfulness. To address this, we introduce B-XAIC, a novel benchmark constructed from real-world molecular data and diverse tasks with known ground-truth rationales for assigned labels. Through a comprehensive evaluation using B-XAIC, we reveal limitations of existing XAI methods for Graph Neural Networks (GNNs) in the molecular domain. This benchmark provides a valuable resource for gaining deeper insights into the faithfulness of XAI, facilitating the development of more reliable and interpretable models.

Figures

Figures reproduced from arXiv: 2505.22252 by the authors.

Figure 1
Figure 1. Schematic of our B-XAIC dataset and benchmark; (a) the dataset preparation steps include [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. Histogram of Tanimoto similarities illus [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Evaluation of node-level explanations for GIN. Null explanation results are shown in green, [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (13 more)
Figure 4
Figure 4. Figure 4: Evaluation of edge-level explanations for GIN. Null explanation results are shown in green, [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]
Figure 5
Figure 5. Figure 5: Boxplots showing the distribution of explanation quality across different explainers for [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Node-level explanation examples on graphs from different classes in the PAINS task, using [PITH_FULL_IMAGE:figures/full_fig_p009_6.png]
Figure 7
Figure 7. Figure 7: Evaluation of node explanations for all model-explainer combinations. Null explanation results are shown in green, and subgraph explanation results in orange. Overall average scores for each method are displayed in the center. 17 [PITH_FULL_IMAGE:figures/full_fig_p017…
Figure 8
Figure 8. Figure 8: Evaluation of edge explanations for all model-explainer combinations. Null explanation results are shown in green, and subgraph explanation results in orange. Overall average scores for each method are displayed in the center. 18 [PITH_FULL_IMAGE:figures/full_fig_p018…
Figure 9
Figure 9. Figure 9: Boxplots showing the distribution of explanation quality across different explainers for [PITH_FULL_IMAGE:figures/full_fig_p019_9.png]
Figure 10
Figure 10. Figure 10: Node-level explanation examples on graphs from different classes in the [PITH_FULL_IMAGE:figures/full_fig_p020_10.png]
Figure 11
Figure 11. Figure 11: Node-level explanation examples on graphs from different classes in the [PITH_FULL_IMAGE:figures/full_fig_p021_11.png]
Figure 12
Figure 12. Figure 12: Node-level explanation examples on graphs from different classes in the [PITH_FULL_IMAGE:figures/full_fig_p022_12.png]
Figure 13
Figure 13. Figure 13: Node-level explanation examples on graphs from different classes in the [PITH_FULL_IMAGE:figures/full_fig_p023_13.png]
Figure 14
Figure 14. Figure 14: Node-level explanation examples on graphs from different classes in the [PITH_FULL_IMAGE:figures/full_fig_p024_14.png]
Figure 15
Figure 15. Figure 15: Node-level explanation examples on graphs from different classes in the [PITH_FULL_IMAGE:figures/full_fig_p025_15.png]
Figure 16
Figure 16. Figure 16: Node-level explanation examples on graphs from different classes in the [PITH_FULL_IMAGE:figures/full_fig_p026_16.png]

Discussion (0). Sign in to comment.

Forward citations

Cited by 2 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Fragment-Wise Interpretability in Graph Neural Networks via Molecule Decomposition and Contribution Analysis

    cs.LG 2025-08 conditional novelty 6.0 of 10

    SEAL makes GNN predictions inherently interpretable by decomposing molecules into fragments and defining the prediction as a sum of per-fragment contributions, enforced with regularized fragment-local message passing.

  2. Measuring What Matters: A Unified Evaluation Framework for GNN Explainability

    cs.LG 2026-07 conditional novelty 5.0 of 10

    A dual feature/edge, ground-truth-free metric suite and large multi-task benchmark show Input×Gradient as a robust Pareto choice among eight GNN explainers, with no universal winner.

Reference graph

Works this paper leans on

52 extracted references · 44 canonical work pages · cited by 2 Pith papers

  1. [1]

    Towards a unified framework for fair and stable graph representation learning

    Chirag Agarwal, Himabindu Lakkaraju, and Marinka Zitnik. Towards a unified framework for fair and stable graph representation learning. In Cassio P. de Campos, Marloes H. Maathuis, and Erik Quaeghebeur, editors,Proceedings of the Thirty-Seventh Conference on Uncertainty in Artificial Intelligence, UAI 2021, Virtual Event, 27-30 July 2021, volume 161 ofPro...

  2. [2]

    Evaluating explainability for graph neural networks.Scientific Data, 10(144), 2023

    Chirag Agarwal, Owen Queen, Himabindu Lakkaraju, and Marinka Zitnik. Evaluating explainability for graph neural networks.Scientific Data, 10(144), 2023

  3. [3]

    Graphframex: Towards systematic evaluation of explainability methods for graph neural networks, 2022

    Kenza Amara, Rex Ying, Zitao Zhang, Zhihao Han, Yinan Shan, Ulrik Brandes, Sebastian Schemm, and Ce Zhang. Graphframex: Towards systematic evaluation of explainability methods for graph neural networks, 2022

  4. [4]

    Global explainability of gnns via logic combination of learned concepts

    Steve Azzolin, Antonio Longa, Pietro Barbiero, Pietro Liò, and Andrea Passerini. Global explainability of gnns via logic combination of learned concepts. InThe Eleventh International Conference on Learning Representations, ICLR 2023, Kigali, Rwanda, May 1-5, 2023. OpenReview.net, 2023

  5. [5]

    Jonathan B Baell and Georgina A Holloway. New substructure filters for removal of pan assay interference compounds (pains) from screening libraries and for their exclusion in bioassays.Journal of medicinal chemistry, 53(7):2719–2740, 2010

  6. [6]

    Robust counterfactual explanations on graph neural networks

    Mohit Bajaj, Lingyang Chu, Zi Yu Xue, Jian Pei, Lanjun Wang, Peter Cho-Ho Lam, and Yong Zhang. Robust counterfactual explanations on graph neural networks. In Marc’Aurelio Ranzato, Alina Beygelzimer, Yann N. Dauphin, Percy Liang, and Jennifer Wortman Vaughan, editors,Advances in Neural Information Processing Systems 34: Annual Conference on Neural Informa...

  7. [7]

    Borgwardt, Cheng Soon Ong, Stefan Schönauer, S

    Karsten M. Borgwardt, Cheng Soon Ong, Stefan Schönauer, S. V . N. Vishwanathan, Alex J. Smola, and Hans-Peter Kriegel. Protein function prediction via graph kernels.Bioinformatics, 21(1):47–56, 2005

  8. [8]

    Grease: Generate factual and counterfactual explanations for gnn-based recommendations, 2022

    Ziheng Chen, Fabrizio Silvestri, Jia Wang, Yongfeng Zhang, Zhenhua Huang, Hongshik Ahn, and Gabriele Tolomei. Grease: Generate factual and counterfactual explanations for gnn-based recommendations, 2022. 10

Show all 52 references
  1. [9]

    Bronstein, Emanuele Rodolà, Luca Rossi, and Andrea Torsello

    Luca Cosmo, Giorgia Minello, Alessandro Bicciato, Michael M. Bronstein, Emanuele Rodolà, Luca Rossi, and Andrea Torsello. Graph kernel neural networks.IEEE Transactions on Neural Networks and Learning Systems, 36(4):6257–6270, April 2025

  2. [10]

    Towards self-explainable graph neural network, 2021

    Enyan Dai and Suhang Wang. Towards self-explainable graph neural network, 2021

  3. [11]

    Lopez de Compadre, Gargi Debnath, Alan J

    Asim Kumar Debnath, Rosa L. Lopez de Compadre, Gargi Debnath, Alan J. Shusterman, and Corwin Hansch. Structure-activity relationship of mutagenic aromatic and heteroaromatic nitro compounds. correlation with molecular orbital energies and hydrophobicity.Journal of Medicinal Ch...

  4. [12]

    This looks like what? challenges and future research directions for part-prototype models.ArXiv preprint, abs/2502.09340, 2025

    Khawla Elhadri, Tomasz Michalski, Adam Wróbel, Jörg Schlötterer, Bartosz Zieli´nski, and Christin Seifert. This looks like what? challenges and future research directions for part-prototype models.ArXiv preprint, abs/2502.09340, 2025

  5. [13]

    Moghaddam, and Roger Wattenhofer

    Lukas Faber, Amin K. Moghaddam, and Roger Wattenhofer. When comparing to ground truth is wrong: On evaluating GNN explanation methods. In Feida Zhu, Beng Chin Ooi, and Chunyan Miao, editors, KDD ’21: The 27th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, Virtua...

  6. [14]

    Kergnns: Interpretable graph neural networks with graph kernels

    Aosong Feng, Chenyu You, Shiqiang Wang, and Leandros Tassiulas. Kergnns: Interpretable graph neural networks with graph kernels. InThirty-Sixth AAAI Conference on Artificial Intelligence, AAAI 2022, Thirty-Fourth Conference on Innovative Applications of Artificial Intelligence...

  7. [15]

    Chembl: a large-scale bioactivity database for drug discovery.Nucleic acids research, 40(D1):D1100–D1107, 2012

    Anna Gaulton, Louisa J Bellis, A Patricia Bento, Jon Chambers, Mark Davies, Anne Hersey, Yvonne Light, Shaun McGlinchey, David Michalovich, Bissan Al-Lazikani, et al. Chembl: a large-scale bioactivity database for drug discovery.Nucleic acids research, 40(D1):D1100–D1107, 2012

  8. [16]

    Drug discovery with explainable artificial intelligence.Nature Machine Intelligence, 2(10):573–584, 2020

    José Jiménez-Luna, Francesca Grisoni, and Gisbert Schneider. Drug discovery with explainable artificial intelligence.Nature Machine Intelligence, 2(10):573–584, 2020

  9. [17]

    A survey on explainability of graph neural networks, 2023

    Jaykumar Kakkad, Jaspal Jannu, Kartik Sharma, Charu Aggarwal, and Sourav Medya. A survey on explainability of graph neural networks, 2023

  10. [18]

    Kipf and Max Welling

    Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. In 5th International Conference on Learning Representations, ICLR 2017, Toulon, France, April 24-26, 2017, Conference Track Proceedings. OpenReview.net, 2017

  11. [19]

    Taylor, and Mohamed R

    Boris Knyazev, Graham W. Taylor, and Mohamed R. Amer. Understanding attention and generalization in graph neural networks. In Hanna M. Wallach, Hugo Larochelle, Alina Beygelzimer, Florence d’Alché-Buc, Emily B. Fox, and Roman Garnett, editors,Advances in Neural Information Pro...

  12. [20]

    Explaining the explainers in graph neural networks: a comparative study.ACM Computing Surveys, 57(5):1–37, January 2025

    Antonio Longa, Steve Azzolin, Gabriele Santin, Giulia Cencetti, Pietro Lio, Bruno Lepri, and Andrea Passerini. Explaining the explainers in graph neural networks: a comparative study.ACM Computing Surveys, 57(5):1–37, January 2025

  13. [21]

    ter Hoeve, Gabriele Tolomei, Maarten de Rijke, and Fabrizio Silvestri

    Ana Lucic, Maartje A. ter Hoeve, Gabriele Tolomei, Maarten de Rijke, and Fabrizio Silvestri. Cf- gnnexplainer: Counterfactual explanations for graph neural networks. In Gustau Camps-Valls, Francisco J. R. Ruiz, and Isabel Valera, editors,International Conference on Artificial ...

  14. [22]

    Parameterized explainer for graph neural network

    Dongsheng Luo, Wei Cheng, Dongkuan Xu, Wenchao Yu, Bo Zong, Haifeng Chen, and Xiang Zhang. Parameterized explainer for graph neural network. In Hugo Larochelle, Marc’Aurelio Ranzato, Raia Hadsell, Maria-Florina Balcan, and Hsuan-Tien Lin, editors,Advances in Neural Information...

  15. [23]

    Salient deconvolutional networks

    Aravindh Mahendran and Andrea Vedaldi. Salient deconvolutional networks. In Bastian Leibe, Jiri Matas, Nicu Sebe, and Max Welling, editors,Computer Vision – ECCV 2016, pages 120–135, Cham, 2016. Springer International Publishing

  16. [24]

    Teixeira, Luis Pinheiro, and Andre O

    Ines Filipa Martins, Ana L. Teixeira, Luis Pinheiro, and Andre O. Falcao. A bayesian approach to in silico blood-brain barrier penetration modeling.Journal of Chemical Information and Modeling, 52(6):1686–1697, 2012. PMID: 22612593. 11

  17. [25]

    Deeptox: Toxicity prediction using deep learning.Frontiers in Environmental Science, V olume 3 - 2015, 2016

    Andreas Mayr, Günter Klambauer, Thomas Unterthiner, and Sepp Hochreiter. Deeptox: Toxicity prediction using deep learning.Frontiers in Environmental Science, V olume 3 - 2015, 2016

  18. [26]

    Brenner, and Lucy J

    Kevin McCloskey, Ankur Taly, Federico Monti, Michael P. Brenner, and Lucy J. Colwell. Using attribution to decode binding mechanism in neural network models for chemistry.Proceedings of the National Academy of Sciences, 116(24):11624–11629, 2019

  19. [27]

    Interpretable and generalizable graph learning via stochastic attention mechanism

    Siqi Miao, Mia Liu, and Pan Li. Interpretable and generalizable graph learning via stochastic attention mechanism. In Kamalika Chaudhuri, Stefanie Jegelka, Le Song, Csaba Szepesvári, Gang Niu, and Sivan Sabato, editors,International Conference on Machine Learning, ICML 2022, 1...

  20. [28]

    From anecdotal evidence to quantitative evaluation methods: A systematic review on evaluating explainable ai.ACM Computing Surveys, 55(13s):1–42, July 2023

    Meike Nauta, Jan Trienes, Shreyasi Pathak, Elisa Nguyen, Michelle Peters, Yasmin Schmitt, Jörg Schlöt- terer, Maurice van Keulen, and Christin Seifert. From anecdotal evidence to quantitative evaluation methods: A systematic review on evaluating explainable ai.ACM Computing Su...

  21. [29]

    Progrest: Prototypical graph regression soft trees for molecular property prediction

    Dawid Rymarczyk, Daniel Dobrowolski, and Tomasz Danel. Progrest: Prototypical graph regression soft trees for molecular property prediction. InProceedings of the 2023 SIAM International Conference on Data Mining (SDM), pages 379–387. SIAM, 2023

  22. [30]

    Wei, Brian K

    Benjamin Sanchez-Lengeling, Jennifer N. Wei, Brian K. Lee, Emily Reif, Peter Wang, Wesley Wei Qian, Kevin McCloskey, Lucy J. Colwell, and Alexander B. Wiltschko. Evaluating attribution for graph neural networks. In Hugo Larochelle, Marc’Aurelio Ranzato, Raia Hadsell, Maria-Flo...

  23. [31]

    Interpreting graph neural networks for NLP with differentiable edge masking

    Michael Sejr Schlichtkrull, Nicola De Cao, and Ivan Titov. Interpreting graph neural networks for NLP with differentiable edge masking. In9th International Conference on Learning Representations, ICLR 2021, Virtual Event, Austria, May 3-7, 2021. OpenReview.net, 2021

  24. [32]

    Not just a black box: Learning important features through propagating activation differences, 2016

    Avanti Shrikumar, Peyton Greenside, Anna Shcherbina, and Anshul Kundaje. Not just a black box: Learning important features through propagating activation differences, 2016

  25. [33]

    Deep inside convolutional networks: Visualising image classification models and saliency maps, 2014

    Karen Simonyan, Andrea Vedaldi, and Andrew Zisserman. Deep inside convolutional networks: Visualising image classification models and saliency maps, 2014

  26. [34]

    Striving for simplicity: The all convolutional net, 2015

    Jost Tobias Springenberg, Alexey Dosovitskiy, Thomas Brox, and Martin Riedmiller. Striving for simplicity: The all convolutional net, 2015

  27. [35]

    An efficient explanation of individual classifications using game theory.J

    Erik Štrumbelj and Igor Kononenko. An efficient explanation of individual classifications using game theory.J. Mach. Learn. Res., 11:1–18, 2010

  28. [36]

    Axiomatic attribution for deep networks

    Mukund Sundararajan, Ankur Taly, and Qiqi Yan. Axiomatic attribution for deep networks. In Doina Precup and Yee Whye Teh, editors,Proceedings of the 34th International Conference on Machine Learning, ICML 2017, Sydney, NSW, Australia, 6-11 August 2017, volume 70 ofProceedings ...

  29. [37]

    Learning and evaluating graph neural network explanations based on counterfactual and factual reasoning

    Juntao Tan, Shijie Geng, Zuohui Fu, Yingqiang Ge, Shuyuan Xu, Yunqi Li, and Yongfeng Zhang. Learning and evaluating graph neural network explanations based on counterfactual and factual reasoning. In Proceedings of the ACM Web Conference 2022, WWW ’22. ACM, April 2022

  30. [38]

    Graph attention networks

    Petar Velickovic, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Liò, and Yoshua Bengio. Graph attention networks. In6th International Conference on Learning Representations, ICLR 2018, Vancouver, BC, Canada, April 30 - May 3, 2018, Conference Track Proceedings. Op...

  31. [39]

    Comparison of descriptor spaces for chemical compound retrieval and classification

    Nikil Wale and George Karypis. Comparison of descriptor spaces for chemical compound retrieval and classification. InSixth International Conference on Data Mining (ICDM’06), pages 678–689, 2006

  32. [40]

    A compact review of molecular property prediction with graph neural networks.Drug Discovery Today: Technologies, 37:1–12, 2020

    Oliver Wieder, Stefan Kohlbacher, Mélaine Kuenemann, Arthur Garon, Pierre Ducrot, Thomas Seidel, and Thierry Langer. A compact review of molecular property prediction with graph neural networks.Drug Discovery Today: Technologies, 37:1–12, 2020

  33. [41]

    Graph information bottleneck

    Tailin Wu, Hongyu Ren, Pan Li, and Jure Leskovec. Graph information bottleneck. In Hugo Larochelle, Marc’Aurelio Ranzato, Raia Hadsell, Maria-Florina Balcan, and Hsuan-Tien Lin, editors,Advances in Neural Information Processing Systems 33: Annual Conference on Neural Informati...

  34. [42]

    Discovering invariant rationales for graph neural networks

    Yingxin Wu, Xiang Wang, An Zhang, Xiangnan He, and Tat-Seng Chua. Discovering invariant rationales for graph neural networks. InThe Tenth International Conference on Learning Representations, ICLR 2022, Virtual Event, April 25-29, 2022. OpenReview.net, 2022

  35. [43]

    Zhenxing Wu, Jihong Chen, Yitong Li, Yafeng Deng, Haitao Zhao, Chang-Yu Hsieh, and Tingjun Hou. From black boxes to actionable insights: a perspective on explainable artificial intelligence for scientific discovery.Journal of Chemical Information and Modeling, 63(24):7617–7627, 2023

  36. [44]

    How powerful are graph neural networks? In7th International Conference on Learning Representations, ICLR 2019, New Orleans, LA, USA, May 6-9, 2019

    Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural networks? In7th International Conference on Learning Representations, ICLR 2019, New Orleans, LA, USA, May 6-9, 2019. OpenReview.net, 2019

  37. [45]

    Gnnexplainer: Generating explanations for graph neural networks

    Zhitao Ying, Dylan Bourgeois, Jiaxuan You, Marinka Zitnik, and Jure Leskovec. Gnnexplainer: Generating explanations for graph neural networks. In Hanna M. Wallach, Hugo Larochelle, Alina Beygelzimer, Florence d’Alché-Buc, Emily B. Fox, and Roman Garnett, editors,Advances in Ne...

  38. [46]

    Improving subgraph recognition with variational graph information bottleneck, 2021

    Junchi Yu, Jie Cao, and Ran He. Improving subgraph recognition with variational graph information bottleneck, 2021

  39. [47]

    Explainability in graph neural networks: A taxonomic survey, 2020

    Hao Yuan, Haiyang Yu, Shurui Gui, and Shuiwang Ji. Explainability in graph neural networks: A taxonomic survey, 2020

  40. [48]

    On explainability of graph neural networks via subgraph explorations

    Hao Yuan, Haiyang Yu, Jie Wang, Kang Li, and Shuiwang Ji. On explainability of graph neural networks via subgraph explorations. In Marina Meila and Tong Zhang, editors,Proceedings of the 38th International Conference on Machine Learning, ICML 2021, 18-24 July 2021, Virtual Eve...

  41. [49]

    Relex: A model-agnostic relational model explainer, 2020

    Yue Zhang, David Defazio, and Arti Ramesh. Relex: A model-agnostic relational model explainer, 2020

  42. [50]

    Protgnn: Towards self-explaining graph neural networks

    Zaixi Zhang, Qi Liu, Hao Wang, Chengqiang Lu, and Cheekong Lee. Protgnn: Towards self-explaining graph neural networks. InThirty-Sixth AAAI Conference on Artificial Intelligence, AAAI 2022, Thirty-Fourth Conference on Innovative Applications of Artificial Intelligence, IAAI 20...

  43. [51]

    Towards robust fidelity for evaluating explainability of graph neural networks

    Xu Zheng, Farhad Shirani, Tianchun Wang, Wei Cheng, Zhuomin Chen, Haifeng Chen, Hua Wei, and Dongsheng Luo. Towards robust fidelity for evaluating explainability of graph neural networks. InThe Twelfth International Conference on Learning Representations, ICLR 2024, Vienna, Au...

  44. [2024]

    13 A Full Evaluation Results Here we provide the full set of results that were shown partially in the main paper

    OpenReview.net, 2024. 13 A Full Evaluation Results Here we provide the full set of results that were shown partially in the main paper. These results accompany the introduction of our benchmark and offer a detailed view of node and edge explanation performance across different...

Pith tools

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