Pith. sign in

REVIEW 3 major objections 5 minor 1 cited by

A Neuro-Symbolic Approach for Probabilistic Reasoning on Graph Data

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

Pith's one-line read A trained graph neural network can be embedded as a probabilistic component inside a relational Bayesian network, preserving its semantics and opening the combined model to MAP reasoning.

desk verdict Solid neuro-symbolic framework, but the watershed demo's printed RBN doesn't match its stated λ-objective—worth reviewing if the authors fix or explain the code. read the letter →

arxiv 2507.21873 v2 pith:DFNYPMUO submitted 2025-07-29 cs.AI

classification cs.AI
keywords neuro-symbolicAIrelationalBayesiannetworkgraphneuralMAPinferencecollectivenodeclassificationhomophilyheterophilymulti-objectiveoptimization
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

The paper tries to establish that a trained graph neural network is not merely a black-box predictor: the function it computes can be placed inside a relational Bayesian network as one component of a generative probabilistic model. There the GNN supplies the conditional distribution for a relation, while symbolic knowledge expressed in the RBN adds dependencies that the GNN alone cannot represent. The paper argues the integration is faithful in semantics, training objective, and computation, and it develops a maximum-a-posteriori inference procedure for the combined model. Two applications show the payoff: node classification becomes collective classification that respects homo- and heterophilic label patterns, and multi-objective watershed planning becomes a MAP query. A sympathetic reader would take the central claim to be that GNNs can be reused as probabilistic components for reasoning, not just as task-specific predictors.

What carries the argument

The load-bearing object is the RBN probability formula, especially the construct $\mathrm{COMBINE}\ W_{i,1}F_{k,1}(u),\dots,W_{i,d}F_{k,d}(u)\ \mathrm{WITH\ LOG\text{-}REG\ FORALL}\ u\ \mathrm{WHERE}\ neighbor(v,u)$, which rewrites the scalar message-passing update of a GNN as a symbolic formula; a full GNN is built from nested such formulas and terminates in a softmax over its final layer. A second mechanism is the likelihood graph, the computation graph that makes MAP inference local: flipping one query atom only requires re-evaluating its ancestors, and a greedy algorithm with Gibbs resampling of unobserved atoms walks toward a maximum. The third mechanism is a reduction: for a bounded random variable $X$, defining an auxiliary Boolean $\eta_X$ with $P(\eta_X=\mathrm{true}\mid X)=L(X)$, the min-max normalization of $X$, turns maximizing $\mathbb{E}[X]$ over control variables into MAP inference on $\eta_X=\mathrm{true}$, and conditioning on several such variables yields multi-objective tradeoffs. For the homophily application, an auxiliary attribute $\mathit{LH}$ encodes the match between predicted and estimated local homophily, and conditioning $\mathit{LH}=\mathrm{true}$ couples the otherwise independent GNN predictions.

What would settle it

Construct a synthetic graph with sharply fragmented local homophily, for example adjacent regions whose labels are strongly homophilic in one block and strongly heterophilic in the next, train a GNN on it, and run MAP inference with the paper's estimated local-homophily constraint. If the unconstrained GNN matches or beats the MAP variant on test nodes, then the propagated estimates have mis-specified the MAP objective and the claimed collective-classification gain does not hold in that regime.

Watch

Extended reading notes

Core claim

The paper's central discovery is an embedding: for the aggregate-combine-readout class of GNNs, every message-passing update can be written verbatim as a relational probability formula of an RBN, so a GNN trained for node or graph classification defines the conditional probability model of a target relation inside a fully generative RBN. Two implementations are given, one compiling the GNN into native RBN code and one linking an external GNN module into the RBN, and the paper claims both preserve the GNN's semantics and computational properties while fitting the RBN paradigm. Proposition 1 states that minimizing the GNN's cross-entropy loss and maximizing the RBN's likelihood are equivalent for the embedded component. On that basis, MAP inference over query atoms, computed on the RBN's likelihood graph, lets the combined model solve reasoning tasks: enforcing a homophily-matching constraint during collective node classification, and maximizing expected objectives in a multi-objective planning problem via the auxiliary-variable reduction of Proposition 2.

Load-bearing premise

The collective-classification improvement assumes that label propagation from labeled nodes gives trustworthy estimates of the unknown true local homophily values; the paper explicitly notes the method will not work well on graphs where neighboring nodes have very different local homophily values.

Editorial extensions

If this is right

  • Any GNN in the covered aggregate-combine-readout class can be embedded in an RBN without changing what it computes, so a network trained once can be reused inside symbolic probabilistic models for new queries.
  • Conditioning the auxiliary homophily attribute on true converts the GNN's independent node predictions into a collective labeling; on the paper's synthetic grid-labeling benchmark this improves accuracy in nearly all settings, with one reported exception under high homophily and noisy features.
  • The auxiliary-Boolean reduction makes multi-objective expected-value optimization a MAP inference problem, so the same algorithm that does collective classification also produces tradeoff-optimal decisions in the watershed-planning scenario.
  • The two integration routes have complementary costs: the compiled version trains slower but infers faster, while the external interface trains fast and loses some local optimization; the paper points to training by interface and compiling for inference as the best combination.

Reading between the lines

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

  • The conditioning-on-true reduction is a general device: any bounded expected-value objective with a tractable conditional model can be turned into a MAP query this way, so the planning application should transfer to other network-design, resource-allocation, or policy problems.
  • The homophily-propagation estimator is the empirical bottleneck: a learned estimator, or one that represents uncertainty about local homophily, could extend the collective-classification gains to the fragmented-homophily graphs where the paper concedes the method struggles.
  • Because the compiled embedding preserves the GNN's computation graph, the framework could support joint end-to-end fine-tuning of neural weights under symbolic constraints, which the current MAP-only workflow does not exploit.
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. The paper proposes a neuro-symbolic framework that embeds graph neural networks (GNNs) into Relational Bayesian Networks (RBNs), with two implementations: compiling the GNN into native RBN code and interfacing to an external PyTorch GNN. The authors prove two propositions: that the RBN encoding preserves the GNN's function and training objective (Proposition 1), and that maximizing an affine-normalized expectation is equivalent to MAP inference on an auxiliary Boolean variable (Proposition 2). They use MAP inference in two applications: collective node classification with homophily/heterophily constraints, and a multi-objective watershed planning task. The paper claims that the integration is semantically and computationally faithful, and reports substantial accuracy gains over base GNNs on synthetic Ising data, as well as a Pareto-style tradeoff curve for the environmental planning scenario.

Significance. If the technical claims hold, this is a valuable contribution: it provides a principled way to turn a trained GNN into a reusable probabilistic component for symbolic reasoning, with formal equivalence results and two diverse applications with new public benchmarks. The paper is also commendable for releasing code and data. The formal propositions and the explicit treatment of homo/heterophily in collective classification are strengths. However, the verification of the watershed application is currently blocked by an apparent mismatch between the described objective and the published RBN code, and Proposition 1's scope does not cover the partial-label setting used in the experiments. These issues are local to specific claims but are load-bearing for the paper's advertised versatility.

major comments (3)
  1. [§6.2 and Appendix C.3] The code in Appendix C.3 does not implement the λ-weighted objective described in §6.2. The formula `all_const(s) = WIF 0.1 THEN Pollution(s)=LOW ELSE @target_s(s)` is a conditional branch on the constant 0.1, not the stated `λ*Pollution(s) + (1−λ)*@target_s(s)` combination, and it contains no λ parameter at all. The accompanying text says 'the constant 0.1 in the WIF represents the λ parameter', but this is not a weighted sum: for λ=0.1 the expression either returns `Pollution(s)=LOW` or `@target_s(s)`, never a convex combination. Also, under the WIF semantics shown in Figure 1, the then-branch should be a probability value, so `Pollution(s)=LOW` as a Boolean equality is at least ambiguous and likely not well-formed for this semantics. As a result, the λ sweep in Figure 6 and the claimed tradeoff between clean water and profit are not reproducible from the published model definition. This is a load-bearing issue for the multi-objective planning demonstration, which is one of the paper's two main application pillars.
  2. [§3.4, Proposition 1] Proposition 1 establishes equivalence between GNN cross-entropy minimization and RBN likelihood maximization only under the assumption that the target relation is fully observed in the training graphs, since the proof relies on the chain-rule decomposition of the full log-likelihood into a conditional term for `target` given its parents. In the node classification experiments of Section 5.3 the training data contain only partial labels (train/validation/test splits of 48/32/20), so target values for unobserved nodes are not part of the observed data. The stated equivalence therefore does not cover the setting in which the experiments are actually run. The paper should either state the proposition under a missing-at-random assumption and argue that the partial-label likelihood is still maximized by the same parameters, or explicitly restrict the equivalence claim to fully observed target relations and describe how the experimental setup relates to it.
  3. [§5.1 and Appendix A] The collective classification objective in equation (7) depends on the true local homophily values LH_{y*}, which are unknown; the paper replaces them with estimates obtained by the propagation algorithm in Appendix A. The paper itself concedes in §5.3 that this 'will not work well on graphs where neighboring nodes have very different local homophily values.' This is a real limitation, but it is explicitly stated and the Ising experiments do include a fragmented case (H=−0.4, F=0.1) where the method still improves over the base GNN. To make the practical reach of the method clearer, the paper should provide a sensitivity analysis or at least a comparison with an oracle variant that uses the true LH values on one of the synthetic settings, quantifying how much of the reported gain depends on the quality of the estimates.
minor comments (5)
  1. [§5.3] The text refers to 'Table 5.2' when discussing gray cells, but the table in question is Table 1; please correct the cross-reference.
  2. [§3.4, proof of Proposition 1] There is a typo in the proof: 'log-likelhood' should be 'log-likelihood'.
  3. [Figure 3] The caption 'Parameter for LH' is uninformative; the figure would benefit from a description of the two logistic curves and how the horizontal axis represents LH_{y*}(v) − LH_{\hat{y}}(v).
  4. [§6.2] The text says 'let λ used in the definition of η_X(v) vary between 0 and 1', but the definition of η_X in Section 6.1 only introduces the min-max normalization and the conditional probability P(η_X=true|X)=L(X); the role of λ in that definition is not formalized until the weighted combination is discussed later. Please make the definition of the combined objective explicit in one place.
  5. [Appendix C.3] The formulas for `@profit_land` use crop names CORN, COSY, PAST, SOYB, while Section 6.2 lists the crops as corn, soybean, corn/soy rotation, and pasture; please harmonize the notation.

Circularity Check

0 steps flagged · score 1.0 of 10

No significant circularity: the encoding and MAP reductions are proven constructions, and self-citations are background support.

full rationale

The paper's derivation chain is not circular. The GNN-to-RBN integration (Section 3.4, Eqs. (3)-(4)) is a compilation: the RBN formula is written so that it computes the same function as the GNN, and Proposition 1 gives a chain-rule proof that GNN cross-entropy training and RBN likelihood training coincide; the equivalence is by construction rather than an assumed conclusion. The collective classification model (Section 5.1, Eq. (7)) is a hand-specified product of the independently trained GNN distribution P_N and a homophily-matching factor P(LH|Yhat, LH_y*); the MAP objective is a modeling choice, and the paper explicitly describes the LH_hat approximation and concedes in Section 5.3 that it will not work well on graphs where neighboring nodes have very different local homophily values. The multi-objective reduction (Section 6.1, Definition 1 and Proposition 2) is a proven identity between argmax_c E[X|c] and MAP for an auxiliary Boolean variable eta_X; it does not assume the result it derives. Self-citations to [13] and [27] provide background encoding results that are restated in the paper and are not the source of the new empirical outcomes. One non-circular internal-validity concern: the RBN code printed in Appendix C.3 defines all_const(s) = WIF 0.1 THEN Pollution(s)=LOW ELSE @target_s(s), which the appendix text says represents the lambda-weighted objective of Section 6.2, but the printed formula is not a transparent weighted sum and, under the WIF semantics of Figure 1, is at least syntactically surprising. This is a reproducibility risk, not a circular reduction, so it does not raise the circularity score.

Assumptions & free parameters 5 free parameters · 6 assumptions · 2 invented entities

The framework introduces two auxiliary Boolean variables (LH and eta_X) as modeling devices, and relies on several hand-picked parameters (LH shape, profit coefficients, tradeoff lambda, propagation settings) that are not derived from data. The core encoding of GNNs as RBN formulas is taken from the authors' earlier work. The most consequential domain assumptions are that homophily can be estimated by propagation and that the GNN generalizes to unseen crop configurations.

free parameters (5)
  • LH shape parameters = 4.39 and 2.2 (slope and intercept)
    These constants define the logistic functions in Figure 3 that convert the difference between true and predicted local homophily into the probability of LH(v)=true. They are chosen by hand as a default and are not optimized or subjected to sensitivity analysis.
  • Homophily propagation iterations and tolerance = not specified
    Algorithm 2 takes 'iterations' and 'tolerance' as inputs, but the paper does not report the values used in the experiments. These settings control the quality of the estimated LH values that drive the MAP objective.
  • Profit coefficients beta_c = pasture=1, soy=4, cosy=2, corn=5
    User-defined expected profit per area unit for each crop in the watershed optimization. These values determine the economic objective and are not derived from data.
  • Tradeoff coefficient lambda = stated as varying 0 to 1; appendix code uses 0.1
    The tradeoff between low pollution and profit in the environmental application. The main text says lambda is varied, but the Appendix C.3 RBN code fixes the WIF constant at 0.1, which is an inconsistency.
  • MAP search hyperparameters = batch size b, lookahead depth d, stopping criterion t, restarts (3 for Ising, 5 for watershed)
    These control the greedy MAP search and the number of random restarts. They are standard algorithm settings, but they affect the reported optima and runtimes.
assumptions (6)
  • domain assumption ACR GNNs with sigmoid activations can be exactly represented as RBN probability formulas
    Section 3.4 uses the encoding of message passing as a LOG-REG aggregation over neighbors, citing [13] and [3]. The current implementation only covers sigmoid activations.
  • domain assumption In Proposition 1, the training data fully observes the target relation and all parent relations
    The proposition's proof relies on the likelihood decomposing over observed atoms. The node classification experiments use partial labels, which this assumption does not cover.
  • domain assumption Homophily propagation produces accurate estimates of true local homophily
    Section 5.1 replaces the unknown LH_y* with propagated estimates. The paper notes this fails on graphs with fragmented local homophily.
  • domain assumption The trained GNN generalizes to crop assignments outside the 14 simulated scenarios
    Section 6.2 optimizes over arbitrary crop compositions, but the GNN is trained on only 14 manually defined scenarios.
  • standard math In Proposition 2, X is bounded and the min-max normalization is affine
    Definition 1 states X is bounded in [min_X, max_X] and L(X) is the affine normalization, which makes the expectation identity exact.
  • standard math Bayes rule and the chain rule factorization of the likelihood graph
    Used throughout Section 4 to define the MAP objective and the likelihood graph.
invented entities (2)
  • Boolean homophily constraint variable LH(v)
    purpose: Encodes whether the predicted label configuration matches the estimated local homophily at node v; conditioning on LH(v)=true couples the independent GNN predictions into a collective classification.
    This is a modeling construct introduced in Section 5.1, defined by a hand-chosen logistic function of the homophily difference. It has no falsifiable handle outside the model.
  • Expected-value encoding variable eta_X
    purpose: Converts the maximization of an expectation into a MAP inference query by conditioning on eta_X=true, using P(eta_X=true|X)=L(X).
    Introduced in Section 6.1 as a general trick. It is an auxiliary random variable with no independent empirical content.

how reviews work

0 comments
Cite this review

Pith. "Pith review of A Neuro-Symbolic Approach for Probabilistic Reasoning on Graph Data." pith.science (2026). https://pith.science/paper/DFNYPMUO

@misc{pith2026250721873,
  author       = {Pith},
  title        = {Pith review of: A Neuro-Symbolic Approach for Probabilistic Reasoning on Graph Data},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/DFNYPMUO}},
  note         = {Machine review of arXiv:2507.21873}
}
read the original abstract

Graph neural networks (GNNs) excel at predictive tasks on graph-structured data but often lack the ability to incorporate symbolic domain knowledge and perform general reasoning. Relational Bayesian Networks (RBNs), in contrast, enable fully generative probabilistic modeling over graph-like structures and support rich symbolic knowledge and probabilistic inference. This paper presents a neuro-symbolic framework that seamlessly integrates GNNs into RBNs, combining the learning strength of GNNs with the flexible reasoning capabilities of RBNs. We develop two implementations of this integration: one compiles GNNs directly into the native RBN language, while the other maintains the GNN as an external component. Both approaches preserve the semantics and computational properties of GNNs while fully aligning with the RBN modeling paradigm. We also propose a maximum a posteriori (MAP) inference method for these neuro-symbolic models. To demonstrate the framework's versatility, we apply it to two distinct problems. First, we transform a GNN for node classification into a collective classification model that explicitly models homo- and heterophilic label patterns, substantially improving accuracy on both synthetic and real-world datasets. Second, we introduce a multi-objective network optimization problem in environmental planning, where MAP inference and continuous numeric relaxation support a complex decision-making task. Both applications include new publicly available benchmark datasets. This work introduces a powerful and coherent neuro-symbolic approach to graph data, bridging learning and reasoning in ways that enable novel applications and improved performance across diverse tasks.

Figures

Figures reproduced from arXiv: 2507.21873 by the authors.

Figure 1
Figure 1. Elements of RBN representations. (A): a graph with categorical node attribute [PITH_FULL_IMAGE:figures/full_fig_p005_1.png] view at source ↗
Figure 2
Figure 2. The likelihood graph. Left: standard RBN version; Right: replacement of (blue shaded) part of [PITH_FULL_IMAGE:figures/full_fig_p009_2.png] view at source ↗
Figure 3
Figure 3. Parameter for 𝐿𝐻 Note that even though in 𝑃N (𝒀ˆ) the variables 𝑌ˆ(𝑣) for the different nodes are independent, conditioning on 𝑳𝑯 = 𝒕 𝒓𝒖𝒆 induces dependen￾cies, thereby turning this into a collective classification approach. Thus, our objective in MAP inference for 𝒀ˆ is to both maximize the probability that the GNN assigns to 𝒀ˆ based on observed attribute values 𝑨 = 𝒂, and the probability of the constraints 𝐿𝐻(𝑣) … view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: Screenshot from HAWQS of the watershed. The lines with the direction represent the water flow [PITH_FULL_IMAGE:figures/full_fig_p017_4.png]
Figure 5
Figure 5. Figure 5: Left: Watershed graph. Blue: water, green: agricultural land, brown: other land. Right: inferred [PITH_FULL_IMAGE:figures/full_fig_p018_5.png]
Figure 6
Figure 6. Figure 6: Left: achievable tradeoffs between clean water and profit. Right: optimal crop compositions for [PITH_FULL_IMAGE:figures/full_fig_p019_6.png]
Figure 7
Figure 7. Figure 7: All the graphs generated from the HAWQS simulations. The rows represent one crop scenario [PITH_FULL_IMAGE:figures/full_fig_p026_7.png]

Discussion (0). Sign in to comment.

Forward citations

Cited by 1 Pith paper

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

  1. Panning for Gold: Expanding Domain-Specific Knowledge Graphs with General Knowledge

    cs.AI 2026-01 reject novelty 6.0 of 10

    ExeFuse uses learned 'logic' transformations and density checks to fuse general-graph facts into domain knowledge graphs, but the benchmark labels and baseline comparisons are too underspecified to support the claimed gains.

Reference graph

Works this paper leans on

41 extracted references · 38 canonical work pages · cited by 1 Pith paper

  1. [27]

    Generalized reasoning with graph neural net- works by relational bayesian network encodings

    Raffaele Pojer, Andrea Passerini, and Manfred Jaeger. Generalized reasoning with graph neural net- works by relational bayesian network encodings. In Learning on Graphs Conference , 2024

  2. [13]

    Learning and Reasoning with Graph Data: Neural and Statistical-Relational Ap- proaches

    Manfred Jaeger. Learning and Reasoning with Graph Data: Neural and Statistical-Relational Ap- proaches. In International Research School in Artificial Intelligence in Bergen , Open Access Series in Informatics (OASIcs), 2022

  3. [1]

    Semantic Probabilistic Layers for Neuro-Symbolic Learning

    Kareem Ahmed, Stefano Teso, Kai-Wei Chang, Guy Van den Broeck, and Antonio Vergari. Semantic Probabilistic Layers for Neuro-Symbolic Learning. In NeurIPS, 2022

  4. [2]

    Logic tensor net- works

    Samy Badreddine, Artur d 'Avila Garcez, Luciano Serafini, and Michael Spranger. Logic tensor net- works. Artificial Intelligence, 303, 2022

  5. [3]

    The logical expressiveness of graph neural networks

    Pablo Barceló, Egor V Kostylev, Mikael Monet, Jorge Pérez, Juan Reutter, and Juan-Pablo Silva. The logical expressiveness of graph neural networks. In 8th International Conference on Learning Repre- sentations (ICLR 2020), 2020

  6. [4]

    Controllable neural symbolic regression

    Tommaso Bendinelli, Luca Biggio, and Pierre-Alexandre Kamienny. Controllable neural symbolic regression. In Proceedings of ICML, 2023

  7. [5]

    Neural-symbolic learning and reasoning: A survey and interpretation

    Tarek R Besold et al. Neural-symbolic learning and reasoning: A survey and interpretation. InNeuro- Symbolic Artificial Intelligence: The State of the Art . 2021

  8. [6]

    Neural sheaf diffusion: A topological perspective on heterophily and oversmoothing in gnns

    Cristian Bodnar, Francesco Di Giovanni, Benjamin Chamberlain, Pietro Lio, and Michael Bronstein. Neural sheaf diffusion: A topological perspective on heterophily and oversmoothing in gnns. In Proceedings of NeurIPS, 2022

Show all 41 references
  1. [7]

    Getoor and B

    L. Getoor and B. Taskar. Introduction to statistical relational learning . The MIT Press, 2007

  2. [8]

    Hamilton, Zhitao Ying, and Jure Leskovec

    William L. Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs. In Proceedings of NeurIPS, 2017

  3. [9]

    HAWQS System 2.0 and Data to model the lower 48 conterminous U.S using the SWAT model, 2023

    HAWQS 2.0. HAWQS System 2.0 and Data to model the lower 48 conterminous U.S using the SWAT model, 2023. 21

  4. [10]

    Neuro- symbolic approaches in artificial intelligence

    Pascal Hitzler, Aaron Eberhart, Monireh Ebrahimi, Md Kamruzzaman Sarker, and Lu Zhou. Neuro- symbolic approaches in artificial intelligence. National Science Review, 9(6), 2022

  5. [11]

    Relational Bayesian networks

    Manfred Jaeger. Relational Bayesian networks. In Proceedings of UAI, 1997

  6. [12]

    Parameter learning for relational Bayesian networks

    Manfred Jaeger. Parameter learning for relational Bayesian networks. In Proceedings ICML, 2007

  7. [14]

    The third AI summer: AAAI Robert S

    Henry Kautz. The third AI summer: AAAI Robert S. Engelmore memorial lecture. AI Magazine, 43, 2022

  8. [15]

    Variational graph auto-encoders

    Thomas N Kipf and Max Welling. Variational graph auto-encoders. arXiv preprint arXiv:1611.07308, 2016

  9. [16]

    Lamb, Artur d’Avila Garcez, Marco Gori, Marcelo O.R

    Luís C. Lamb, Artur d’Avila Garcez, Marco Gori, Marcelo O.R. Prates, Pedro H.C. Avelar, and Moshe Y. Vardi. Graph neural networks meet neural-symbolic computing: A survey and perspective. In IJCAI,

  10. [17]

    Siddharth

    Yichao Liang, Josh Tenenbaum, Tuan Anh Le, and N. Siddharth. Drawing out of distribution with neuro-symbolic generative models. In NeurIPS, 2022

  11. [18]

    Efficient gen- eration of structured objects with constrained adversarial networks

    Luca Di Liello, Pierfrancesco Ardino, Jacopo Gobbi, Paolo Morettin, and Stefano Teso. Efficient gen- eration of structured objects with constrained adversarial networks. In NeurIPS, 2020

  12. [19]

    Graph normalizing flows

    Jenny Liu, Aviral Kumar, Jimmy Ba, Jamie Kiros, and Kevin Swersky. Graph normalizing flows. In NeurIPS, 2019

  13. [20]

    On performance discrepancies across local homophily levels in graph neural networks

    Donald Loveland, Jiong Zhu, Mark Heimann, Benjamin Fish, Michael T Schaub, and Danai Koutra. On performance discrepancies across local homophily levels in graph neural networks. In Learning on Graphs Conference, 2024

  14. [21]

    The heterophilic graph learning handbook: Benchmarks, models, theoretical analysis, applications and challenges

    Sitao Luan, Chenqing Hua, Qincheng Lu, Liheng Ma, Lirong Wu, Xinyu Wang, Minkai Xu, Xiao- Wen Chang, Doina Precup, Rex Ying, et al. The heterophilic graph learning handbook: Benchmarks, models, theoretical analysis, applications and challenges. arXiv preprint arXiv:2407.09618, 2024

  15. [22]

    Deepproblog: Neural probabilistic logic programming

    Robin Manhaeve, Sebastijan Dumancic, Angelika Kimmig, Thomas Demeester, and Luc De Raedt. Deepproblog: Neural probabilistic logic programming. Advances in Neural Information Processing Systems, 31:3749–3759, 2018

  16. [23]

    Neural probabilistic logic programming in deepproblog

    Robin Manhaeve, Sebastijan Dumančić, Angelika Kimmig, Thomas Demeester, and Luc De Raedt. Neural probabilistic logic programming in deepproblog. Artificial Intelligence, 298, 2021

  17. [24]

    Neural markov logic networks

    Giuseppe Marra and Ondřej Kuželka. Neural markov logic networks. In UAI, 2021

  18. [25]

    VAEL: Bridging Variational Autoencoders and Probabilistic Logic Programming

    Eleonora Misino, Giuseppe Marra, and Emanuele Sansone. VAEL: Bridging Variational Autoencoders and Probabilistic Logic Programming. NeurIPS, 2022

  19. [26]

    Primula-3 for probabilistic modeling and reasoning on graph data

    Raffaele Pojer and Manfred Jaeger. Primula-3 for probabilistic modeling and reasoning on graph data. In ECML PKDD Conference, Demo track , 2025. to appear. 22

  20. [28]

    Using domain knowledge to guide dialog structure induction via neural probabilistic soft logic

    Connor Pryor, Quan Yuan, Jeremiah Liu, Mehran Kazemi, Deepak Ramachandran, Tania Bedrax- Weiss, and Lise Getoor. Using domain knowledge to guide dialog structure induction via neural probabilistic soft logic. In ACL, 2023

  21. [29]

    Gmnn: Graph Markov neural networks

    Meng Qu, Yoshua Bengio, and Jian Tang. Gmnn: Graph Markov neural networks. In ICML, 2019

  22. [30]

    From statistical relational to neuro-symbolic artificial intelligence

    Luc de Raedt, Sebastijan Dumančić, Robin Manhaeve, and Giuseppe Marra. From statistical relational to neuro-symbolic artificial intelligence. In IJCAI, 2020. Survey track

  23. [31]

    Graphvae: Towards generation of small graphs using variational autoencoders

    Martin Simonovsky and Nikos Komodakis. Graphvae: Towards generation of small graphs using variational autoencoders. In ICANN, 2018

  24. [32]

    Scalable neural- probabilistic answer set programming

    Arseny Skryagin, Daniel Ochs, Devendra Singh Dhami, and Kristian Kersting. Scalable neural- probabilistic answer set programming. Journal of Artificial Intelligence Research , 78:579–617, 2023

  25. [33]

    Lifted relational neural networks: Efficient learning of latent relational structures

    Gustav Sourek, Vojtech Aschenbrenner, Filip Zelezny, Steven Schockaert, and Ondrej Kuzelka. Lifted relational neural networks: Efficient learning of latent relational structures. Journal of Artificial In- telligence Research, 62:69–100, 2018

  26. [34]

    Beyond graph neural networks with lifted rela- tional neural networks

    Gustav Šourek, Filip Železn `y, and Ondřej Kuželka. Beyond graph neural networks with lifted rela- tional neural networks. Machine Learning, 110(7):1695–1738, 2021

  27. [35]

    Soil and water assessment tool (SWAT)

    USDA Agricultural Research Service and Texas A&M AgriLife Research. Soil and water assessment tool (SWAT)

  28. [36]

    A-nesi: A scalable approximate method for probabilistic neurosymbolic inference

    Emile van Krieken, Thiviyan Thanapalasingam, Jakub Tomczak, et al. A-nesi: A scalable approximate method for probabilistic neurosymbolic inference. In NeurIPS, 2023

  29. [37]

    Two sides of the same coin: Heterophily and oversmoothing in graph convolutional neural networks

    Yujun Yan, Milad Hashemi, Kevin Swersky, Yaoqing Yang, and Danai Koutra. Two sides of the same coin: Heterophily and oversmoothing in graph convolutional neural networks. In ICDM, 2022

  30. [38]

    Neurasp: embracing neural networks into answer set programming

    Zhun Yang, Adam Ishay, and Joohyung Lee. Neurasp: embracing neural networks into answer set programming. In IJCAI, 2021

  31. [39]

    A survey on neural-symbolic learning systems

    Dongran Yu, Bo Yang, Dayou Liu, Hui Wang, and Shirui Pan. A survey on neural-symbolic learning systems. Neural Networks, 166:105–126, 2023

  32. [40]

    Efficient probabilistic logic reasoning with graph neural networks

    Yuyu Zhang, Xinshi Chen, Yuan Yang, Arun Ramamurthy, Bo Li, Yuan Qi, and Le Song. Efficient probabilistic logic reasoning with graph neural networks. In International Conference on Learning Representations, 2020

  33. [41]

    Graph neural networks: A review of methods and applications

    Jie Zhou, Ganqu Cui, Shengding Hu, Zhengyan Zhang, Cheng Yang, Zhiyuan Liu, Lifeng Wang, Changcheng Li, and Maosong Sun. Graph neural networks: A review of methods and applications. AI Open, 2020. 23 A Propagate Homophily Algorithm Algorithm 2 Propagate Homophily 1: procedure ...

Pith tools

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