REVIEW 3 major objections 6 minor 50 references
Graph Counterfactual Explainable AI via Latent Space Traversal
T0 review · 3 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read Latent-space traversal of a permutation-equivariant graph VAE generates counterfactual explanations for any differentiable graph classifier without defining a graph distance.
desk verdict A clearly written but explicitly preliminary paper on latent-space traversal for graph counterfactuals; the core idea is plausible, the evaluation is too weak to support the robustness claim. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the permutation-equivariant graph variational autoencoder (PEGVAE), whose latent space is traversed to reach the counterfactual. Equivariant linear layers, built from a fixed set of Bell-number basis elements, make the encoder and decoder commute with node permutations, so a relabeled input produces a relabeled counterfactual and the factual/counterfactual alignment is preserved. The traversal itself is the update $z_{i+1} = z_i - \epsilon \nabla \mathcal{L}(z_i, y_D)$, where $\mathcal{L}$ is cross-entropy against the desired class $y_D$ plus an $\ell^2$ penalty on the latent code, and a Gumbel-Softmax approximation to $p_\theta(G \mid z)$ makes the decoder differentiable so the classifier's gradient can steer the walk.
What would settle it
Compute the chemical validity of the decoded counterfactual graphs and the latent distance from each counterfactual code to the nearest training-set encoding; if a substantial fraction of flips are chemically invalid, or if the walked codes cluster far outside the region occupied by training encodings, the premise that traversal stays in-distribution is false.
Extended reading notes
Core claim
The paper claims that classifier-guided traversal of a permutation-equivariant VAE latent space produces valid, aligned counterfactual graphs for any differentiable graph classifier, without an explicit graph metric and without training the generative model with a counterfactual-specific loss. The walk is steered by gradient descent on the cross-entropy of the decoded graph with respect to the desired class, regularized by an L2 penalty on the latent code, and a Gumbel-Softmax relaxation lets gradients flow through the discrete decoder. In the reported experiments, CGCF is consistently high-performing and more robust than the baselines: it achieves the highest flip-ratio on all three datasets, and in the trade-off between identity preservation and validity it outperforms on NCI1 and Mutagenicity while remaining competitive on AIDS. The authors also note that because the method is probabilistic, an arbitrary number of counterfactual explanations can be sampled for a given factual graph.
Load-bearing premise
The load-bearing premise is that a VAE trained only with reconstruction and KL objectives produces a latent space in which gradient steps toward the classifier's decision boundary decode to realistic in-distribution graphs, and the paper's own limitations section acknowledges that a latent counterfactual obtained far from any training point may not be reasonable.
Editorial extensions
If this is right
- A practitioner can generate counterfactual graphs for any differentiable black-box graph classifier without choosing a graph distance; the latent metric replaces that choice.
- Because the decoder defines a distribution $p_\theta(G \mid z)$, the method can produce arbitrarily many explanations per factual graph by sampling at the found latent code.
- The full pipeline is permutation equivariant, so explanations respect node ordering: permuting the input nodes permutes the counterfactual in the same way.
- If the classifier is replaced, new counterfactuals can be generated for the new decision boundary without retraining the generative model.
- The framework is stated to extend beyond the categorical molecule attributes used in the experiments to continuous node and edge attributes.
Reading between the lines
- A testable extension would measure the latent distance from each counterfactual code to the nearest training encoding; if many walked codes land far from the data manifold, the flips may reflect out-of-distribution artifacts rather than meaningful molecular changes.
- The same traversal recipe could apply to other structured data with a group action, such as point clouds or meshes, by substituting an appropriately equivariant autoencoder and differentiable decoder.
- Because the walk is continuous, the method could be run in reverse from the counterfactual side to trace the decision boundary, yielding per-class minimal perturbations instead of per-instance explanations.
- The reliance on a pretrained VAE suggests a practical shortcut: when a new classifier is deployed on the same graph domain, the expensive generative model can be reused and only the short traversal needs to be repeated.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes CGCF, a method for generating counterfactual explanations of graph classifiers by traversing the latent space of a permutation-equivariant variational autoencoder. Given a factual graph, the method encodes it, then iteratively updates the latent code with gradient descent on a cross-entropy loss (with L2 regularization) that pushes the decoded graph toward a desired class, using a Gumbel-Softmax relaxation to differentiate through the discrete decoder. The method is evaluated on three molecular graph datasets (AIDS, Mutagenicity, NCI1) against three latent-space baselines (random prior samples, nearest training graph, decoded mean of k-NN), and the paper claims that CGCF is consistently high-performing and more robust than the baselines, while removing the need to define an explicit graph distance.
Significance. If the result holds, the paper offers a principled and elegant way to generate graph counterfactuals without a hand-defined graph metric, leveraging equivariance to preserve node alignment and a pre-trained generative model to stay near the data manifold. Strengths of the paper include its explicit treatment of permutation equivariance, the algorithmic clarity of Section 2.5, the acknowledgment of limitations, and the promise of public source code. However, the central evaluation is weakened by a circularity between the optimized objective and the headline metric, and the main traversal mechanism relies on an unvalidated assumption that classifier gradients computed on Gumbel-Softmax relaxed graphs align with hard-decoded counterfactual flips. These issues must be addressed before the contribution can be considered established.
major comments (3)
- [Section 2.5, Eq. (5)-(6); Appendix A.1.1 and A.2] The traversal minimizes the classifier's cross-entropy on Gumbel-Softmax relaxed graphs at temperature τ=1, but the classifier was trained on discrete one-hot graphs. The paper never verifies that a latent point that flips the classifier under the soft relaxation also flips it when the decoded graph is obtained by hard sampling or argmax decoding, so the reported flip-ratios may reflect a surrogate problem rather than true counterfactual flips. I request an explicit measurement of the soft-versus-hard flip agreement, and, if the gap is nontrivial, a modification such as temperature annealing or straight-through estimation with a re-evaluation of all reported metrics.
- [Section 3.2, Table 1, and Eq. (6)] The primary validity metric, Flip-Ratio, measures exactly the objective being optimized in Eq. (6): the traversal minimizes cross-entropy toward the desired class, and Flip-Ratio records whether that class is achieved. This makes the headline claim partly circular. I recommend adding independent validity measures, such as chemical validity of decoded molecules (e.g., via RDKit), distance of the counterfactual latent code to latent encodings of training graphs, and agreement with a held-out or differently initialized classifier, and reporting Flip-Ratio with confidence intervals.
- [Section 3.3, Section 3.4, and Limitations (Section 4)] The claim that CGCF is "consistently high-performing and more robust than the baselines" is not yet supported because all baselines are weak and share the same VAE latent space; no comparison is made with established graph counterfactual methods such as CLEAR, CF-GNNExplainer, or D4Explainer. Additionally, the paper's own Limitations paragraph concedes that decoded counterfactuals can be unreasonable when the latent code is far from training points, but no experiment checks the distance of the obtained counterfactual latent codes to the latent training distribution or otherwise validates the in-distribution assumption. Adding such an analysis and stronger baselines is necessary to substantiate the robustness claim.
minor comments (6)
- [Title] The title contains a typo: "T raversal" should be "Traversal".
- [Section 2.5, Eq. (6)] The regularization term is written as λ∥z_i∥; please clarify whether this is an L2 norm or a squared L2 norm, and define the indicator notation 1{D=k}(y_D) more explicitly.
- [Algorithm 1] The stopping condition compares the classifier output y_i to the desired label y_D, but since the classifier outputs probabilities, the threshold used to declare a flip should be specified; also, once the desired label is achieved, the algorithm freezes further updates but still returns the graph from the final iteration, which may differ from the first successful counterfactual.
- [Table 1] Flip-Ratio is reported as a single scalar without variance or sample size, unlike the identity-preservation metrics; please provide confidence intervals or standard errors.
- [Appendix A.2] The hyperparameters τ, λ, and the number of iterations N are fixed a priori without sensitivity analysis; a brief study of their influence on flip-ratio and identity preservation would strengthen the practical claims.
- [Discussion, 'arbitrary number of explanations'] The claim that the method can produce an unlimited number of counterfactuals is only true if one samples from the decoder likelihood after the traversal; the traversal itself is deterministic given the factual graph and hyperparameters, so please clarify the intended stochasticity.
Circularity Check
Flip-ratio, used as the main validity claim, is the same objective that CGCF optimizes during latent traversal; identity-preservation metrics provide partial independent grounding.
-
self definitional
[Section 2.5 (Eq. 6 and Algorithm 1) vs Section 3.2 (Flip-Ratio)]
"The loss function L is defined as a cross entropy loss with L2-regularization limiting the size of zi, i.e.: L(zi, yD) = − P K k=1 1{D=k}(yD) log(yi) + λ∥zi∥ ... The updates stop when either yi = yD, or when the maximum number of iterations, which is set as a hyperparameter, has been reached. ... Flip-Ratio (FR) refers to the number proportion of generated counterfactual explanations, which are assigned the desired class by the classifier."
CGCF's traversal directly optimizes the classifier output toward the desired label yD through the cross-entropy loss in Eq. (6), and Algorithm 1 masks further updates for each counterfactual as soon as C(D(zi)) = yD. The Flip-Ratio metric then counts exactly the proportion of generated graphs that the classifier assigns to yD. A converged run therefore satisfies the FR criterion by construction; the near-1 FR values largely report whether the optimizer met its own stopping condition rather than an independent quality of the counterfactual. The metric is not a prediction from a fitted parameter, but it is the optimization objective renamed as a validity result.
full rationale
The paper's core derivation chain is otherwise self-contained: a permutation-equivariant VAE produces a latent representation, and Eq. (5)–(6) traverse that space using the classifier gradient; no fitted quantity is renamed as a prediction, and no load-bearing result is imported solely from the authors' prior work. The use of Hansen et al. [8] for the equivariant architecture is a normal methodological citation, not an imported uniqueness theorem or ansatz. The main circularity is in the evaluation: Flip-Ratio, the central validity metric used to claim consistent superiority over the baselines, is the same cross-entropy objective that the generation loop optimizes until the desired class is assigned. Thus the headline 'consistently high-performing and more robust' rests substantially on a self-referential success criterion. The identity-preservation metrics are independent and mitigate the issue, as does the honest Limitations passage about possibly unreasonable decoded counterfactuals far from latent training points. The soft-versus-hard Gumbel-Softmax distribution gap flagged by a skeptic is a correctness and robustness risk rather than a circular step, since the reported AUROC does not validate classifier behavior on relaxed inputs but this does not make the derivation equivalent to its inputs. Overall, partial circularity of the validity evaluation warrants a score of 4, not higher, because the identity-preservation results and the fixed-iteration termination keep the claims from being entirely forced by construction.
Assumptions & free parameters
free parameters (6)
- Beta (KL weight in beta-VAE) =
0.1 (AIDS), 0.5 (NCI1, Mutagenicity)
- Lambda (L2 regularization in traversal loss, Eq. 6) =
1
- Gumbel-Softmax temperature tau =
1
- Learning rate for latent traversal =
0.05
- Maximum iterations N =
1000
- k for k-NN baseline =
10
assumptions (5)
- domain assumption A meaningful latent graph representation has been obtained by a standard beta-VAE training, so Euclidean distance in latent space corresponds to semantically meaningful graph variation.
- domain assumption The pretrained classifier and VAE are differentiable through the Gumbel-Softmax relaxation, and gradient steps in latent space stay on the data manifold.
- domain assumption The permutation equivariance of the VAE and invariance of the classifier are sufficient to preserve node alignment between factual and counterfactual graphs.
- standard math The decoder factorizes the graph likelihood as p(B|z)p(V|z,B)p(A|z,B,V)p(E|z,B,V,A) with a Gaussian prior, which is a standard VAE modeling assumption.
- domain assumption Dataset filtering rules from Huang et al. (frequency > 50, node limits) produce a balanced, representative evaluation set.
Cite this review
Pith. "Pith review of Graph Counterfactual Explainable AI via Latent Space Traversal." pith.science (2026). https://pith.science/paper/JWB2JF35
@misc{pith2026250108850,
author = {Pith},
title = {Pith review of: Graph Counterfactual Explainable AI via Latent Space Traversal},
year = {2026},
howpublished = {\url{https://pith.science/paper/JWB2JF35}},
note = {Machine review of arXiv:2501.08850}
}
read the original abstract
Explaining the predictions of a deep neural network is a nontrivial task, yet high-quality explanations for predictions are often a prerequisite for practitioners to trust these models. Counterfactual explanations aim to explain predictions by finding the ''nearest'' in-distribution alternative input whose prediction changes in a pre-specified way. However, it remains an open question how to define this nearest alternative input, whose solution depends on both the domain (e.g. images, graphs, tabular data, etc.) and the specific application considered. For graphs, this problem is complicated i) by their discrete nature, as opposed to the continuous nature of state-of-the-art graph classifiers; and ii) by the node permutation group acting on the graphs. We propose a method to generate counterfactual explanations for any differentiable black-box graph classifier, utilizing a case-specific permutation equivariant graph variational autoencoder. We generate counterfactual explanations in a continuous fashion by traversing the latent space of the autoencoder across the classification boundary of the classifier, allowing for seamless integration of discrete graph structure and continuous graph attributes. We empirically validate the approach on three graph datasets, showing that our model is consistently high-performing and more robust than the baselines.
Figures
Reference graph
Works this paper leans on
-
[1]
A permutation testing framework to compare groups of brain networks
Sean L Simpson, Robert G Lyday, Satoru Hayasaka, Anthony P Marsh, and Paul J Lau- rienti. A permutation testing framework to compare groups of brain networks. Front. Com- put. Neurosci., 7:171, November 2013
work page 2013
-
[2]
Nonparametric bayes mod- eling of populations of networks
Daniele Durante, David B Dunson, and Joshua T Vogelstein. Nonparametric bayes mod- eling of populations of networks. J. Am. Stat. Assoc., 112(520):1516–1530, October 2017
work page 2017
-
[3]
Graph alignment exploiting the spatial organization improves the similarity of brain networks
Anna Calissano, Theodore Papadopoulo, Xavier Pennec, and Samuel Deslauriers- Gauthier. Graph alignment exploiting the spatial organization improves the similarity of brain networks. Human Brain Mapping , 45(1): e26554, 2024
work page 2024
-
[4]
Statistical shape analysis of brain arterial networks (BAN)
Xiaoyang Guo, Aditi Basu Bal, Tom Needham, and Anuj Srivastava. Statistical shape analysis of brain arterial networks (BAN). The Annals of Applied Statistics , 16(2):1130 – 1150, 2022. doi: 10.1214/21-AOAS1536. URL https:// doi.org/10.1214/21-AOAS1536
-
[5]
Haonan Wang and J. S. Marron. Object ori- ented data analysis: Sets of trees. The An- nals of Statistics , 35(5):1849 – 1873, 2007. doi: 10.1214/009053607000000217. URL https: //doi.org/10.1214/009053607000000217
-
[6]
Tree-space statistics and approximations for large-scale analysis of anatomical trees
Aasa Feragen, Megan Owen, Jens Petersen, Mathilde M W Wille, Laura H Thomsen, Asger Dirksen, and Marleen de Bruijne. Tree-space statistics and approximations for large-scale analysis of anatomical trees. Inf. Process. Med. Imaging, 23:74–85, 2013
work page 2013
-
[7]
Public transport networks: em- pirical analysis and modeling
C von Ferber, T Holovatch, Yu Holovatch, and V Palchykov. Public transport networks: em- pirical analysis and modeling. Eur. Phys. J. B , 68(2):261–275, March 2009
work page 2009
-
[8]
Interpreting equivariant rep- resentations
Andreas Abildtrup Hansen, Anna Calissano, and Aasa Feragen. Interpreting equivariant rep- resentations. arXiv preprint arXiv:2401.12588 , 2024
arXiv 2024
Show all 50 references
-
[9]
Beyond trivial counterfactual explanations with diverse valu- able explanations
Pau Rodriguez, Massimo Caccia, Alexandre La- coste, Lee Zamparo, Issam Laradji, Laurent Charlin, and David Vazquez. Beyond trivial counterfactual explanations with diverse valu- able explanations. In 2021 IEEE/CVF Interna- tional Conference on Computer Vision (ICCV) , pages 10...
2021
-
[10]
Learning model-agnostic coun- terfactual explanations for tabular data
Martin Pawelczyk, Klaus Broelemann, and Gjergji Kasneci. Learning model-agnostic coun- terfactual explanations for tabular data. In Proceedings of The Web Conference 2020 , New York, NY, USA, April 2020. ACM
2020
-
[11]
Counterfactual explanations and algorith- mic recourses for machine learning: A review
Sahil Verma, Varich Boonsanong, Minh Hoang, Keegan E Hines, John P Dickerson, and Chirag Shah. Counterfactual explanations and algorith- mic recourses for machine learning: A review. arXiv preprint arXiv:2010.10596 , 2020
2010 arXiv
-
[12]
Gnnx-bench: Unravelling the utility of perturbation-based gnn explain- ers through in-depth benchmarking
Mert Kosan, Samidha Verma, Burouj Armgaan, Khushbu Pahwa, Ambuj Singh, Sourav Medya, and Sayan Ranu. Gnnx-bench: Unravelling the utility of perturbation-based gnn explain- ers through in-depth benchmarking. In The Twelfth International Conference on Learning Representations, 2023
2023
-
[13]
A survey on graph counterfactual explanations: defini- tions, methods, evaluation, and research chal- lenges
Mario Alfonso Prado-Romero, Bardh Prenkaj, Giovanni Stilo, and Fosca Giannotti. A survey on graph counterfactual explanations: defini- tions, methods, evaluation, and research chal- lenges. ACM Computing Surveys , 2023
2023
-
[14]
Local rule-based explanations of black box decision systems
Riccardo Guidotti, Anna Monreale, Salvatore Ruggieri, Dino Pedreschi, Franco Turini, and Fosca Giannotti. Local rule-based explanations of black box decision systems. arXiv preprint arXiv:1805.10820, 2018
2018 arXiv
-
[15]
Multi-objective coun- terfactual explanations
Susanne Dandl, Christoph Molnar, Martin Binder, and Bernd Bischl. Multi-objective coun- terfactual explanations. In International Con- ference on Parallel Problem Solving from Na- ture, pages 448–469. Springer, 2020
2020
-
[16]
Actionable recourse in linear classification
Berk Ustun, Alexander Spangher, and Yang Liu. Actionable recourse in linear classification. In Proceedings of the conference on fairness, accountability, and transparency, pages 10–19, 2019
2019
-
[17]
Face: feasible and actionable counterfactual expla- nations
Rafael Poyiadzi, Kacper Sokol, Raul Santos- Rodriguez, Tijl De Bie, and Peter Flach. Face: feasible and actionable counterfactual expla- nations. In Proceedings of the AAAI/ACM Conference on AI, Ethics, and Society , pages 344–350, 2020
2020
-
[18]
Efficient search for diverse co- herent explanations
Chris Russell. Efficient search for diverse co- herent explanations. In Proceedings of the con- ference on fairness, accountability, and trans- parency, pages 20–28, 2019. 7
2019
-
[19]
Explaining machine learning classifiers through diverse counterfactual expla- nations
Ramaravind K Mothilal, Amit Sharma, and Chenhao Tan. Explaining machine learning classifiers through diverse counterfactual expla- nations. In Proceedings of the 2020 conference on fairness, accountability, and transparency , pages 607–617, 2020
2020
-
[20]
Preserving causal constraints in coun- terfactual explanations for machine learning classifiers
Divyat Mahajan, Chenhao Tan, and Amit Sharma. Preserving causal constraints in coun- terfactual explanations for machine learning classifiers. arXiv preprint arXiv:1912.03277 , 2019
1912 arXiv
-
[21]
Algo- rithmic recourse under imperfect causal knowl- edge: a probabilistic approach
Amir-Hossein Karimi, Julius Von K¨ ugelgen, Bernhard Sch¨ olkopf, and Isabel Valera. Algo- rithmic recourse under imperfect causal knowl- edge: a probabilistic approach. Advances in neural information processing systems , 33:265– 277, 2020
2020
-
[22]
Explanations based on the missing: Towards contrastive ex- planations with pertinent negatives
Amit Dhurandhar, Pin-Yu Chen, Ronny Luss, Chun-Chen Tu, Paishun Ting, Karthikeyan Shanmugam, and Payel Das. Explanations based on the missing: Towards contrastive ex- planations with pertinent negatives. Advances in neural information processing systems , 31, 2018
2018
-
[23]
Towards realistic individual recourse and action- able explanations in black-box decision mak- ing systems
Shalmali Joshi, Oluwasanmi Koyejo, Warut Vi- jitbenjaronk, Been Kim, and Joydeep Ghosh. Towards realistic individual recourse and action- able explanations in black-box decision mak- ing systems. arXiv preprint arXiv:1907.09615 , 2019
1907 arXiv
-
[24]
Counterfactual explanations via riemannian latent space traversal
Paraskevas Pegios, Aasa Feragen, An- dreas Abildtrup Hansen, and Georgios Arvanitidis. Counterfactual explanations via riemannian latent space traversal. arXiv preprint arXiv:2411.02259, 2024
2024 arXiv
-
[25]
Diffeomorphic explanations with normalizing flows
Ann-Kathrin Dombrowski, Jan E Gerken, and Pan Kessel. Diffeomorphic explanations with normalizing flows. In ICML Workshop on In- vertible Neural Networks, Normalizing Flows, and Explicit Likelihood Models , 2021
2021
-
[26]
Ceflow: A robust and efficient counterfactual ex- planation framework for tabular data using nor- malizing flows
Tri Dung Duong, Qian Li, and Guandong Xu. Ceflow: A robust and efficient counterfactual ex- planation framework for tabular data using nor- malizing flows. In Pacific-Asia Conference on Knowledge Discovery and Data Mining , pages 133–144. Springer, 2023
2023
-
[27]
Diffusion models for counterfactual expla- nations
Guillaume Jeanneret, Lo ¨ ıc Simon, and Fr´ ed´ eric Jurie. Diffusion models for counterfactual expla- nations. In Proceedings of the Asian Conference on Computer Vision , pages 858–876, 2022
2022
-
[28]
Fast diffusion-based counterfactuals for shortcut re- moval and generation
Nina Weng, Paraskevas Pegios, Eike Petersen, Aasa Feragen, and Siavash Bigdeli. Fast diffusion-based counterfactuals for shortcut re- moval and generation. In European Conference on Computer Vision , pages 338–357. Springer, 2025
2025
-
[29]
Diffusion-based iterative counterfactual expla- nations for fetal ultrasound image quality assess- ment
Paraskevas Pegios, Manxi Lin, Nina Weng, Morten Bo Søndergaard Svendsen, Zahra Bashir, Siavash Bigdeli, Anders Nymark Chris- tensen, Martin Tolsgaard, and Aasa Feragen. Diffusion-based iterative counterfactual expla- nations for fetal ultrasound image quality assess- ment. arX...
2024 arXiv
-
[30]
Global counterfactual explainer for graph neural networks
Zexi Huang, Mert Kosan, Sourav Medya, Sayan Ranu, and Ambuj Singh. Global counterfactual explainer for graph neural networks. In Pro- ceedings of the Sixteenth ACM International Conference on Web Search and Data Mining , pages 141–149, 2023
2023
-
[31]
D4explainer: In-distribution ex- planations of graph neural network via dis- crete denoising diffusion
Jialin Chen, Shirley Wu, Abhijit Gupta, and Rex Ying. D4explainer: In-distribution ex- planations of graph neural network via dis- crete denoising diffusion. In A. Oh, T. Neu- mann, A. Globerson, K. Saenko, M. Hardt, and S. Levine, editors, Advances in Neural Infor- mation Pro...
2023
-
[32]
Robust counterfactual explana- tions on graph neural networks
Mohit Bajaj, Lingyang Chu, Zi Yu Xue, Jian Pei, Lanjun Wang, Peter Cho-Ho Lam, and Yong Zhang. Robust counterfactual explana- tions on graph neural networks. Advances in Neural Information Processing Systems , 34: 5644–5655, 2021
2021
-
[33]
Clear: Gen- erative counterfactual explanations on graphs
Jing Ma, Ruocheng Guo, Saumitra Mishra, Aidong Zhang, and Jundong Li. Clear: Gen- erative counterfactual explanations on graphs. Advances in neural information processing sys- tems, 35:25895–25907, 2022
2022
-
[34]
GraphV AE: Towards generation of small graphs using variational autoencoders
Martin Simonovsky and Nikos Komodakis. GraphV AE: Towards generation of small graphs using variational autoencoders. In Artifi- cial Neural Networks and Machine Learning – ICANN 2018 , pages 412–422. Springer Inter- national Publishing, 2018
2018
-
[35]
Auto- Encoding variational bayes
Diederik P Kingma and Max Welling. Auto- Encoding variational bayes. December 2013
2013
-
[36]
Variational graph Auto-Encoders
Thomas N Kipf and Max Welling. Variational graph Auto-Encoders. November 2016
2016
-
[37]
On the universality of invariant networks
Haggai Maron, Ethan Fetaya, Nimrod Segol, and Yaron Lipman. On the universality of invariant networks. In International conference on machine learning , pages 4363–4371. PMLR, 2019. 8
2019
-
[38]
Permutation equivariant layers for higher order interactions
Horace Pan and Risi Kondor. Permutation equivariant layers for higher order interactions. In International Conference on Artificial Intel- ligence and Statistics , pages 5987–6001. PMLR, 2022
2022
-
[39]
Invariant and equivariant graph networks
Haggai Maron, Heli Ben-Hamu, Nadav Shamir, and Yaron Lipman. Invariant and equivariant graph networks. In International Conference on Learning Representations, 2018
2018
-
[40]
Multireso- lution graph variational autoencoder
Truong Son Hy and Risi Kondor. Multireso- lution graph variational autoencoder. arXiv preprint arXiv:2106.00967, 2021
2021 arXiv
-
[41]
Geometric deep learning: Grids, groups, graphs, geodesics, and gauges
Michael M Bronstein, Joan Bruna, Taco Cohen, and Petar Veliˇ ckovi´ c. Geometric deep learning: Grids, groups, graphs, geodesics, and gauges. April 2021
2021
-
[42]
The general theory of permu- tation equivarant neural networks and higher order graph variational encoders
Erik Henning Thiede, Truong-Son Hy, and Risi Kondor. The general theory of permu- tation equivarant neural networks and higher order graph variational encoders. CoRR, abs/2004.03990, 2020. URL https://arxiv. org/abs/2004.03990
2004 arXiv
-
[43]
beta-vae: Learning basic visual concepts with a constrained variational framework
I Higgins, L Matthey, A Pal, C P Burgess, X Glorot, and others. beta-vae: Learning basic visual concepts with a constrained variational framework. ICLR (Poster) , 2017
2017
-
[44]
Categorical reparameterization with gumbel- softmax
Eric Jang, Shixiang Gu, and Ben Poole. Categorical reparameterization with gumbel- softmax. arXiv [stat.ML] , November 2016
2016
-
[45]
Comparison of descriptor spaces for chemical compound retrieval and classification
Nikil Wale, Ian A Watson, and George Karypis. Comparison of descriptor spaces for chemical compound retrieval and classification. Knowl- edge and Information Systems , 14:347–375, 2008
2008
-
[46]
Derivation and validation of toxicophores for mutagenicity prediction
Jeroen Kazius, Ross McGuire, and Roberta Bursi. Derivation and validation of toxicophores for mutagenicity prediction. Journal of medici- nal chemistry , 48(1):312–320, 2005
2005
-
[47]
Iam graph database repository for graph based pattern recognition and machine learning
Kaspar Riesen and Horst Bunke. Iam graph database repository for graph based pattern recognition and machine learning. In Structural, Syntactic, and Statistical Pattern Recognition: Joint IAPR International Workshop, SSPR & SPR 2008, Orlando, USA, December 4-6, 2008. Proceedin...
2008
-
[48]
Understanding isomorphism bias in graph data sets
Sergei Ivanov, Sergei Sviridov, and Evgeny Bur- naev. Understanding isomorphism bias in graph data sets. arXiv preprint arXiv:1910.12091 , 2019
1910 arXiv
-
[49]
Kriege, Franka Bause, Kristian Kersting, Petra Mutzel, and Marion Neumann
Christopher Morris, Nils M. Kriege, Franka Bause, Kristian Kersting, Petra Mutzel, and Marion Neumann. Tudataset: A collection of benchmark datasets for learning with graphs. In ICML 2020 Workshop on Graph Representation Learning and Beyond (GRL+ 2020), 2020. URL www.graphlearning.io
2020
-
[50]
Global counterfactual explainer for graph neural networks
Zexi Huang, Mert Kosan, Sourav Medya, Sayan Ranu, and Ambuj Singh. Global counterfactual explainer for graph neural networks. In Proceed- ings of the Sixteenth ACM International Confer- ence on Web Search and Data Mining , WSDM ’23, pages 141–149. Association for Computing Mac...
2023
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.