REVIEW 3 major objections 5 minor 56 references
GraphMinNet: Learning Dependencies in Graphs with Light Complexity Minimal Architecture
T0 review · 3 major / 5 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read GraphMinNet is a graph neural network that claims to capture long-range dependencies with linear computational complexity and provable stability, reporting the best average rank across ten benchmark datasets.
desk verdict GraphMinNet has a reasonable new architecture and strong empirical results, but its advertised theoretical guarantees—non-decaying gradients, stability, and >1-WL expressiveness—are not actually proven, and the LRD proof rests on an invalid identification of the Laplacian with the normalized adjacency. 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 load-bearing object is the explicit state-free minGRU expansion, which rewrites the recurrent state as a weighted sum over all past positions, with cumulative gate products $c_i = \prod_{j=1}^i (1-z_j)$ as weights. GraphMinNet replaces sequence positions with graph nodes and converts the element-wise products into matrix encodings $A_u$ (features modulated by learned functions of Laplacian eigenvalues) and $C_u$ (positional eigenvectors modulated by the same functions), then combines them as $a_u = B(A_u \oplus_1 C_u)$ and forms the hidden state by an inner product against the global sum $\bar{a}$. The spectral choice $\phi(\lambda)=\sum_k b_k\lambda^k$ is what makes powers of the normalized adjacency matrix appear in the gradient, so the proof uses shortest-path walk counts to keep gradients bounded away from zero.
What would settle it
Take a small non-regular graph for which direct computation shows that the Laplacian $L$ and the normalized adjacency matrix $\tilde{A}$ do not commute, construct GraphMinNet exactly as in the proof, and compute the gradient norm $\|\partial h_u/\partial x_v\|$ for pairs of nodes with increasing shortest-path distance; if the spectral identification fails, the lower bound $b_k\gamma>0$ no longer follows and the gradient should decay with distance. Alternatively, measure the empirical gradient norm on the Peptides-func task on such a graph and check whether it stays bounded away from zero as the node distance grows.
Extended reading notes
Core claim
The central discovery is a recurrence-free, state-free expression for the minimal GRU hidden state, $h_t = \sum_{i=1}^t (\prod_{j=i+1}^t (1-z_j)) \odot z_i \odot \tilde{h}_i$, which lets sequence positions be replaced by all graph nodes. GraphMinNet encodes each node through a feature matrix built from Laplacian eigenvalues and a positional matrix built from Laplacian eigenvectors, combines them into a shared embedding, and computes $h_u = \langle a_u, \bar{a}\rangle \odot z_u \odot \tilde{h}_u$. The paper shows that for a particular spectral function $\phi(\lambda)=\sum_k b_k \lambda^k$ with $b_k>0$, the gradient $\partial h_u/\partial x_v$ contains a term proportional to $(\tilde{A}^{\,k})_{u,v}$ with $k=\mathrm{spd}(u,v)$, which is positive because it counts walks, so the gradient norm is bounded below independently of distance. Together with the $O(nmdl)$ complexity estimate, this yields a GNN with provable long-range propagation, permutation equivariance, stability, and expressiveness strictly above 1-WL and no higher than 3-WL.
Load-bearing premise
The load-bearing premise of the long-range-gradient proof is that the graph Laplacian and the normalized adjacency matrix can be interchanged inside the learned spectral function $\phi$, so that walk counts of $\tilde{A}$ appear in the gradient; that interchange is not generally valid on arbitrary graphs, and the proof also assumes without a bound that the Laplacian positional eigenvectors are stable under graph perturbations.
Editorial extensions
If this is right
- A single GraphMinNet layer can propagate information across long distances without vanishing gradients, so deep message-passing stacks are not required for long-range tasks.
- After a one-time eigendecomposition, training and inference cost $O(nmdl)$ in the number of nodes, making the method applicable to graphs with tens of thousands of nodes with linearly growing memory.
- Permutation equivariance and Lipschitz stability mean the model's output does not depend on node ordering and is provably robust to small perturbations of features and eigenvalues.
- The architecture is strictly more expressive than the 1-WL test and no more expressive than the 3-WL test, placing its discrimination power in a known part of the Weisfeiler-Lehman hierarchy.
- The reported experiments cover diverse graph types, including molecular graphs, superpixel image graphs, synthetic community graphs, and Android function-call graphs, with top results on 6 of 10 datasets.
Reading between the lines
- If the spectral identification used in the long-range proof can be justified or extended, the same walk-counting mechanism would suggest that any position-aware GNN whose gradient expands into powers of a normalized adjacency matrix can inherit a non-decaying long-range property, not just GraphMinNet.
- A natural testable extension is to treat the spectral function $\phi$ as a learnable diffusion kernel: varying the weights $b_k$ interpolates between local and global mixing, and this could be probed on long-range benchmark tasks without changing the model's linear complexity.
- The paper establishes eigenvalue stability but does not bound changes in the Laplacian eigenvectors themselves; an experiment measuring robustness on graphs with repeated or nearly repeated Laplacian eigenvalues would directly test whether the stability guarantee holds in practice.
- The paper states that edge features are not explicitly accounted for; incorporating edge features into the gating or inner-product terms is a direct extension that the current formulation does not support.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces GraphMinNet, a GNN that adapts the minGRU recurrent cell to graphs by replacing sequence positions with graph nodes and combining feature encodings with Laplacian positional encodings. The authors claim that GraphMinNet is permutation equivariant, Lipschitz stable, achieves non-decaying gradient norms over long shortest-path distances, has O(nmdl) complexity, and is strictly more expressive than 1-WL but not more than 3-WL. These properties are stated in Section 3.3 and proved in Appendix 7. The empirical section compares against nine baselines on ten datasets, reporting the best average rank and state-of-the-art results on six datasets, plus scaling and robustness experiments.
Significance. The model is simple, efficient, and achieves competitive empirical results, which would be valuable if the theoretical guarantees were established. The linear complexity and the non-decaying-gradient property would distinguish GraphMinNet from quadratic attention models and from message-passing GNNs that suffer from over-squashing. However, the central theoretical results currently have serious gaps: the long-range-dependency proof relies on an invalid identification of the graph Laplacian with the normalized adjacency matrix, the stability proof omits eigenvector perturbation bounds, and the expressiveness lower bound is asserted rather than demonstrated. Since these are the paper's headline guarantees, the contribution is not yet established.
major comments (3)
- [Appendix 7.2, Proposition 7.2 (proof of Proposition 3.5)] The proof sets 'Let ϕ1^2(L) = ϕ(Ã)' after defining L as the combinatorial graph Laplacian and à = D^{-1/2}AD^{-1/2} as the normalized adjacency matrix. These matrices do not generally share eigenvectors, so a polynomial in L cannot equal a polynomial in à for arbitrary graphs. The subsequent lower bound relies on (Ã^k)_{u,v} > 0 for k = spd(u,v), which is only available through this invalid identification. Therefore the non-decaying gradient claim of Proposition 3.5 is not established for general graphs. This is a load-bearing step because LRD is a central advertised contribution.
- [Appendix 7.1, Proposition 7.1 (stability)] The stability proof bounds eigenvalue perturbations using Weyl's inequality, but the positional component C_u in Eq. (5) depends on the eigenvectors p_u. The proof bounds ∥ΔA_u∥ but does not bound ∥Δp_u∥ under graph perturbation. Consequently, the claimed Lipschitz stability with respect to eigenvalues, and the generalization result of Corollary 3.4 that relies on it, is incomplete.
- [Appendix 7.4, Proposition 7.4 (expressiveness)] The strict improvement over 1-WL is asserted rather than proven; no concrete pair of non-isomorphic graphs that are indistinguishable by 1-WL but distinguishable by GraphMinNet is given. The derivation also contains a typo (⟨Au ⊙ Cu, Au ⊙ Cu⟩ should be ⟨Au⊙Cu, Av⊙Cv⟩), and with the truncated positional encoding ⟨Cu,Cv⟩ equals the Laplacian entry only when d=n. The upper-bound citation to (Zhang et al., 2024) is not justified in the text. Thus the claimed 'between 1-WL and 3-WL' expressiveness is not proven.
minor comments (5)
- [Section 3.2, Eq. (11)] The sentence after Eq. (11) says 'This formulation generalizes Eq. (7), which can be recovered as a special case when β = 1.' This is incorrect because with β = 1 the self-term (2−β)⟨Ws1Cu, Ws2Cu⟩1l does not vanish; the correct value is β = 2 (or the sentence should be reworded).
- [Appendix 7.2, Proposition 7.2] The claim that the proof 'holds for other types by appropriately choosing B' is not demonstrated; please provide the construction for each inner-product type or state explicitly that only Type 4 is used.
- [Section 4, Table 1] The 'Avg. Rank' column should be accompanied by a description of how ranks are computed, including how ties and missing entries are handled.
- [Section 4, Figure 3] The x-axis tick labels (777, 5814, 12059, 15129, 17536) do not match the text's stated range of '1,000 to 20,000'; please align the description with the actual experiment.
- [Section 5.1, Table 3] Please clarify which configuration (with or without self-term) is used for each dataset in Table 1, since the ablation shows dataset-dependent defaults.
Circularity Check
No circular derivation found; the LRD proof's key equality is a correctness gap, not a self-referential reduction.
full rationale
GraphMinNet's central empirical claims are measured on predefined test splits against external baselines (Table 1), and its expressiveness bounds are imported from independent sources (Xu et al. 2018 for the 1-WL equivalence; Zhang et al. 2024 for the 3-WL upper bound), so the main results are not fitted values renamed as predictions. The only self-citations (Ahamed & Cheng 2024; Wu & Cheng 2022) are contextual remarks and carry no logical weight in the proofs. The heaviest theoretical step, Proposition 7.2, contains the assertion 'Let φ_1^2(L) = φ(Ã)', which is not generally valid because L and the normalized adjacency matrix need not share eigenvectors; this is a genuine correctness gap, but the proposition is existential and the proof attempts a construction of φ, so it is incomplete rather than a definitional equivalence. Likewise, the spectral-stability proof bounds eigenvalue changes but not eigenvector changes; that is an omitted control, not a circular reduction. Accordingly, no step in the paper's derivation chain is equivalent to its own input by construction.
Assumptions & free parameters
free parameters (3)
- b_k (positive constants in LRD proof)
- β (self-term weight, Eq. 11) =
learned in [0,2]
- Hyperparameters (hidden dim, layers, Lap dim, dropout rates) =
per-dataset values in Table 9
assumptions (4)
- ad hoc to paper The graph Laplacian L and normalized adjacency \tilde A can be identified in the LRD proof.
- domain assumption Laplacian positional eigenvectors p_u are Lipschitz continuous under graph perturbations.
- standard math The basis-invariant GNN bound from Zhang et al. (2024) applies to GraphMinNet.
- standard math Permutation equivariant functions ϕ_i are Lipschitz.
Cite this review
Pith. "Pith review of GraphMinNet: Learning Dependencies in Graphs with Light Complexity Minimal Architecture." pith.science (2026). https://pith.science/paper/52CF7UDH
@misc{pith2026250200282,
author = {Pith},
title = {Pith review of: GraphMinNet: Learning Dependencies in Graphs with Light Complexity Minimal Architecture},
year = {2026},
howpublished = {\url{https://pith.science/paper/52CF7UDH}},
note = {Machine review of arXiv:2502.00282}
}
read the original abstract
Graph Neural Networks (GNNs) have demonstrated remarkable success in various applications, yet they often struggle to capture long-range dependencies (LRD) effectively. This paper introduces GraphMinNet, a novel GNN architecture that generalizes the idea of minimal Gated Recurrent Units to graph-structured data. Our approach achieves efficient LRD modeling with linear computational complexity while maintaining permutation equivariance and stability. The model incorporates both structural and positional information through a unique combination of feature and positional encodings, leading to provably stronger expressiveness than the 1-WL test. Theoretical analysis establishes that GraphMinNet maintains non-decaying gradients over long distances, ensuring effective long-range information propagation. Extensive experiments on ten diverse datasets, including molecular graphs, image graphs, and synthetic networks, demonstrate that GraphMinNet achieves state-of-the-art performance while being computationally efficient. Our results show superior performance on 6 out of 10 datasets and competitive results on the others, validating the effectiveness of our approach in capturing both local and global graph structures.
Figures
Figures from the paper (2 more)
Reference graph
Works this paper leans on
-
[1]
Slic superpixels compared to state-of-the-art superpixel methods
Achanta, R., Shaji, A., Smith, K., Lucchi, A., Fua, P., and S \"u sstrunk, S. Slic superpixels compared to state-of-the-art superpixel methods. IEEE transactions on pattern analysis and machine intelligence, 34 0 (11): 0 2274--2282, 2012
work page 2012
-
[2]
Ahamed, M. A. and Cheng, Q. Timemachine: A time series is worth 4 mambas for long-term forecasting. arXiv preprint arXiv:2403.09898, 2024
arXiv 2024
-
[3]
Specformer: Spectral graph neural networks meet transformers
Bo, D., Shi, C., Wang, L., and Liao, R. Specformer: Spectral graph neural networks meet transformers. In The Eleventh International Conference on Learning Representations, 2022
work page 2022
-
[4]
and Elisseeff, A
Bousquet, O. and Elisseeff, A. Stability and generalization. The Journal of Machine Learning Research, 2: 0 499--526, 2002
2002
-
[5]
Bresson, X. and Laurent, T. Residual gated graph convnets. arXiv preprint arXiv:1711.07553, 2017
arXiv 2017
-
[6]
I., Bronstein, M., Webb, S., and Rossi, E
Chamberlain, B., Rowbottom, J., Gorinova, M. I., Bronstein, M., Webb, S., and Rossi, E. Grand: Graph neural diffusion. In International conference on machine learning, pp.\ 1407--1418. PMLR, 2021
work page 2021
-
[7]
Principal neighbourhood aggregation for graph nets
Corso, G., Cavalleri, L., Beaini, D., Li \`o , P., and Veli c kovi \'c , P. Principal neighbourhood aggregation for graph nets. Advances in Neural Information Processing Systems, 33: 0 13260--13271, 2020
work page 2020
-
[8]
Recurrent distance filtering for graph representation learning
Ding, Y., Orvieto, A., He, B., and Hofmann, T. Recurrent distance filtering for graph representation learning. In Forty-first International Conference on Machine Learning, 2024
work page 2024
Show all 56 references
-
[9]
S., Hou, K., Salakhutdinov, R
Du, S. S., Hou, K., Salakhutdinov, R. R., Poczos, B., Wang, R., and Xu, K. Graph neural tangent kernel: Fusing graph neural networks with graph kernels. Advances in neural information processing systems, 32, 2019
2019
-
[10]
P., Ramp \'a s ek, L., Galkin, M., Parviz, A., Wolf, G., Luu, A
Dwivedi, V. P., Ramp \'a s ek, L., Galkin, M., Parviz, A., Wolf, G., Luu, A. T., and Beaini, D. Long range graph benchmark. Advances in Neural Information Processing Systems, 35: 0 22326--22340, 2022
2022
-
[11]
P., Joshi, C
Dwivedi, V. P., Joshi, C. K., Luu, A. T., Laurent, T., Bengio, Y., and Bresson, X. Benchmarking graph neural networks. Journal of Machine Learning Research, 24 0 (43): 0 1--48, 2023
2023
-
[12]
K., Winn, J., and Zisserman, A
Everingham, M., Van Gool, L., Williams, C. K., Winn, J., and Zisserman, A. The pascal visual object classes (voc) challenge. International journal of computer vision, 88: 0 303--338, 2010
2010
-
[13]
O., Bengio, Y., and Hajimirsadegh, H
Feng, L., Tung, F., Ahmed, M. O., Bengio, Y., and Hajimirsadegh, H. Were rnns all we needed? arXiv preprint arXiv:2410.01201, 2024
2024 arXiv
-
[14]
and Lenssen, J
Fey, M. and Lenssen, J. E. Fast graph representation learning with PyTorch Geometric . In ICLR Workshop on Representation Learning on Graphs and Manifolds, 2019
2019
-
[15]
Understanding and extending subgraph gnns by rethinking their symmetries
Frasca, F., Bevilacqua, B., Bronstein, M., and Maron, H. Understanding and extending subgraph gnns by rethinking their symmetries. Advances in Neural Information Processing Systems, 35: 0 31376--31390, 2022
2022
-
[16]
Freitas, S., Dong, Y., Neil, J., and Chau, D. H. A large-scale database for graph representation learning. arXiv preprint arXiv:2011.07682, 2020
2011 arXiv
-
[17]
and Leskovec, J
Grover, A. and Leskovec, J. node2vec: Scalable feature learning for networks. In Proceedings of the 22nd ACM SIGKDD international conference on Knowledge discovery and data mining, pp.\ 855--864, 2016
2016
-
[18]
and Dao, T
Gu, A. and Dao, T. Mamba: Linear-time sequence modeling with selective state spaces. arXiv preprint arXiv:2312.00752, 2023
2023 arXiv
-
[19]
Hippo: Recurrent memory with optimal polynomial projections
Gu, A., Dao, T., Ermon, S., Rudra, A., and R \'e , C. Hippo: Recurrent memory with optimal polynomial projections. Advances in neural information processing systems, 33: 0 1474--1487, 2020
2020
-
[20]
Combining recurrent, convolutional, and continuous-time models with linear state space layers
Gu, A., Johnson, I., Goel, K., Saab, K., Dao, T., Rudra, A., and R \'e , C. Combining recurrent, convolutional, and continuous-time models with linear state space layers. Advances in neural information processing systems, 34: 0 572--585, 2021
2021
-
[21]
Inductive representation learning on large graphs
Hamilton, W., Ying, Z., and Leskovec, J. Inductive representation learning on large graphs. Advances in neural information processing systems, 30, 2017
2017
-
[22]
Open graph benchmark: Datasets for machine learning on graphs
Hu, W., Fey, M., Zitnik, M., Dong, Y., Ren, H., Liu, B., Catasta, M., and Leskovec, J. Open graph benchmark: Datasets for machine learning on graphs. Advances in neural information processing systems, 33: 0 22118--22133, 2020
2020
-
[23]
Boosting the cycle counting power of graph neural networks with i ^ 2 -gnns
Huang, Y., Peng, X., Ma, J., and Zhang, M. Boosting the cycle counting power of graph neural networks with i ^ 2 -gnns. In The Eleventh International Conference on Learning Representations, 2022
2022
-
[24]
On the stability of expressive positional encodings for graph neural networks
Huang, Y., Lu, W., Robinson, J., Yang, Y., Zhang, M., Jegelka, S., and Li, P. On the stability of expressive positional encodings for graph neural networks. arXiv preprint arXiv:2310.02579, 2023
2023 arXiv
-
[25]
On the stability of expressive positional encodings for graph neural networks
Huang, Y., Lu, W., Robinson, J., Yang, Y., Zhang, M., Jegelka, S., and Li, P. On the stability of expressive positional encodings for graph neural networks. In The Twelfth International Conference on Learning Representations, 2024 a
2024
-
[26]
What can we learn from state space models for machine learning on graphs? arXiv preprint arXiv:2406.05815, 2024 b
Huang, Y., Miao, S., and Li, P. What can we learn from state space models for machine learning on graphs? arXiv preprint arXiv:2406.05815, 2024 b
2024 arXiv
-
[27]
Neural tangent kernel: Convergence and generalization in neural networks
Jacot, A., Gabriel, F., and Hongler, C. Neural tangent kernel: Convergence and generalization in neural networks. Advances in neural information processing systems, 31, 2018
2018
-
[28]
R., Savarese, S., and Saxena, A
Jain, A., Zamir, A. R., Savarese, S., and Saxena, A. Structural-rnn: Deep learning on spatio-temporal graphs. In Proceedings of the ieee conference on computer vision and pattern recognition, pp.\ 5308--5317, 2016
2016
-
[29]
Kipf, T. N. and Welling, M. Semi-supervised classification with graph convolutional networks. In International Conference on Learning Representations, 2016
2016
-
[30]
Rethinking graph transformers with spectral attention
Kreuzer, D., Beaini, D., Hamilton, W., L \'e tourneau, V., and Tossou, P. Rethinking graph transformers with spectral attention. Advances in Neural Information Processing Systems, 34: 0 21618--21629, 2021
2021
-
[31]
Distance encoding: Design provably more powerful neural networks for graph representation learning
Li, P., Wang, Y., Wang, H., and Leskovec, J. Distance encoding: Design provably more powerful neural networks for graph representation learning. Advances in Neural Information Processing Systems, 33: 0 4465--4478, 2020
2020
-
[32]
D., Zhao, L., Smidt, T., Sra, S., Maron, H., and Jegelka, S
Lim, D., Robinson, J. D., Zhao, L., Smidt, T., Sra, S., Maron, H., and Jegelka, S. Sign and basis invariant networks for spectral graph representation learning. In The Eleventh International Conference on Learning Representations, 2022
2022
-
[33]
K., Coates, M., Torr, P., and Lim, S.-N
Ma, L., Lin, C., Lim, D., Romero-Soriano, A., Dokania, P. K., Coates, M., Torr, P., and Lim, S.-N. Graph inductive biases in transformers without message passing. In International Conference on Machine Learning, pp.\ 23321--23337. PMLR, 2023
2023
-
[34]
L., Lenssen, J
Morris, C., Ritzert, M., Fey, M., Hamilton, W. L., Lenssen, J. E., Rattan, G., and Grohe, M. Weisfeiler and leman go neural: Higher-order graph neural networks. In Proceedings of the AAAI conference on artificial intelligence, volume 33, pp.\ 4602--4609, 2019
2019
-
[35]
Deepwalk: Online learning of social representations
Perozzi, B., Al-Rfou, R., and Skiena, S. Deepwalk: Online learning of social representations. In Proceedings of the 20th ACM SIGKDD international conference on Knowledge discovery and data mining, pp.\ 701--710, 2014
2014
-
[36]
Graph neural ordinary differential equations
Poli, M., Massaroli, S., Park, J., Yamashita, A., Asama, H., and Park, J. Graph neural ordinary differential equations. arXiv preprint arXiv:1911.07532, 2019
1911 arXiv
-
[37]
P., Luu, A
Ramp \'a s ek, L., Galkin, M., Dwivedi, V. P., Luu, A. T., Wolf, G., and Beaini, D. Recipe for a general, powerful, scalable graph transformer. Advances in Neural Information Processing Systems, 35: 0 14501--14515, 2022
2022
-
[38]
Learnability, stability and uniform convergence
Shalev-Shwartz, S., Shamir, O., Srebro, N., and Sridharan, K. Learnability, stability and uniform convergence. The Journal of Machine Learning Research, 11: 0 2635--2670, 2010
2010
-
[39]
J., and Sinop, A
Shirzad, H., Velingker, A., Venkatachalam, B., Sutherland, D. J., and Sinop, A. K. Exphormer: Sparse transformers for graphs. In International Conference on Machine Learning, pp.\ 31613--31632. PMLR, 2023
2023
-
[40]
K., Bhalla, S., Usmani, S
Singh, S., Chaudhary, K., Dhanda, S. K., Bhalla, S., Usmani, S. S., Gautam, A., Tuknait, A., Agrawal, P., Mathur, D., and Raghava, G. P. Satpdb: a database of structurally annotated therapeutic peptides. Nucleic acids research, 44 0 (D1): 0 D1119--D1126, 2016
2016
-
[41]
Graph attention networks
Veli c kovi \'c , P., Cucurull, G., Casanova, A., Romero, A., Li \`o , P., and Bengio, Y. Graph attention networks. In International Conference on Learning Representations, 2018
2018
-
[42]
Equivariant and stable positional encoding for more powerful graph neural networks
Wang, H., Yin, H., Zhang, M., and Li, P. Equivariant and stable positional encoding for more powerful graph neural networks. In International Conference on Learning Representations, 2022
2022
-
[43]
State space model for new-generation network alternative to transformers: A survey
Wang, X., Wang, S., Ding, Y., Li, Y., Wu, W., Rong, Y., Kong, W., Huang, J., Li, S., Yang, H., et al. State space model for new-generation network alternative to transformers: A survey. arXiv preprint arXiv:2404.09516, 2024
2024 arXiv
-
[44]
and Cheng, Q
Wu, X. and Cheng, Q. Stabilizing and enhancing link prediction through deepened graph auto-encoders. In IJCAI: proceedings of the conference, volume 2022, pp.\ 3587. NIH Public Access, 2022
2022
-
[45]
N., Gomes, J., Geniesse, C., Pappu, A
Wu, Z., Ramsundar, B., Feinberg, E. N., Gomes, J., Geniesse, C., Pappu, A. S., Leswing, K., and Pande, V. Moleculenet: a benchmark for molecular machine learning. Chemical science, 9 0 (2): 0 513--530, 2018
2018
-
[46]
Continuous graph neural networks
Xhonneux, L.-P., Qu, M., and Tang, J. Continuous graph neural networks. In International conference on machine learning, pp.\ 10432--10441. PMLR, 2020
2020
-
[47]
How powerful are graph neural networks? In International Conference on Learning Representations, 2018
Xu, K., Hu, W., Leskovec, J., and Jegelka, S. How powerful are graph neural networks? In International Conference on Learning Representations, 2018
2018
-
[48]
Do transformers really perform badly for graph representation? Advances in neural information processing systems, 34: 0 28877--28888, 2021
Ying, C., Cai, T., Luo, S., Zheng, S., Ke, G., He, D., Shen, Y., and Liu, T.-Y. Do transformers really perform badly for graph representation? Advances in neural information processing systems, 34: 0 28877--28888, 2021
2021
-
[49]
Hierarchical graph representation learning with differentiable pooling
Ying, Z., You, J., Morris, C., Ren, X., Hamilton, W., and Leskovec, J. Hierarchical graph representation learning with differentiable pooling. Advances in neural information processing systems, 31, 2018
2018
-
[50]
Position-aware graph neural networks
You, J., Ying, R., and Leskovec, J. Position-aware graph neural networks. In International conference on machine learning, pp.\ 7134--7143. PMLR, 2019
2019
-
[51]
M., Ying, R., and Leskovec, J
You, J., Gomes-Selman, J. M., Ying, R., and Leskovec, J. Identity-aware graph neural networks. In Proceedings of the AAAI conference on artificial intelligence, volume 35, pp.\ 10737--10745, 2021
2021
-
[52]
On the expressive power of spectral invariant graph neural networks
Zhang, B., Zhao, L., and Maron, H. On the expressive power of spectral invariant graph neural networks. arXiv preprint arXiv:2406.04336, 2024
2024 arXiv
-
[53]
and Li, P
Zhang, M. and Li, P. Nested graph neural networks. Advances in Neural Information Processing Systems, 34: 0 15734--15747, 2021
2021
-
[54]
From stars to subgraphs: Uplifting any gnn with local structure awareness
Zhao, L., Jin, W., Akoglu, L., and Shah, N. From stars to subgraphs: Uplifting any gnn with local structure awareness. In International Conference on Learning Representations, 2021
2021
-
[55]
C., and Dong, X
Zhi, Y.-C., Ng, Y. C., and Dong, X. Gaussian processes on graphs via spectral kernel learning. IEEE Transactions on Signal and Information Processing over Networks, 9: 0 304--314, 2023
2023
-
[56]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.