REVIEW 5 major objections 6 minor 40 references
Fast and Distributed Equivariant Graph Neural Networks by Virtual Node Learning
T0 review · 5 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read This paper claims that a small ordered set of virtual nodes can replace most real-real message passing in equivariant graph neural networks, preserving accuracy while scaling to graphs with more than 100,000 nodes and cutting memory and…
desk verdict DistEGNN and the Fluid113K dataset are the real contributions here; the theoretical claim that virtual nodes approximate the real graph is shakier than the paper admits. 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 ordered set of $C$ virtual nodes with coordinates $\vec{Z}\in\mathbb{R}^{3\times C}$ and features $S\in\mathbb{R}^{H\times C}$, initialized at the graph center of mass so the model starts E(3)-equivariant. Three message types carry the computation: EGNN-style real-real messages $m^r_{ij}$ (Eq. 3), an E(3)-invariant virtual-global matrix $m^v = (\vec{Z} - \bar{x}\mathbf{1}^\top)^\top(\vec{Z} - \bar{x}\mathbf{1}^\top)$ (Eq. 4), and per-pair real-virtual messages $m^v_{ic}$ (Eq. 5). Real coordinates update by pulling toward neighbor differences and virtual-node differences, while virtual coordinates update by aggregating over all real nodes. The MMD loss in Eq. (10), with an RBF kernel, is the mechanism that keeps the virtual nodes spread out and aligned with the real distribution, and it is what makes Proposition IV.3's premise, that virtual coordinates approximate real ones, plausible.
What would settle it
Train the p=1.00 variant on the N-body system while sweeping C from 1 to N; if the MSE plateaus well above the full-edge EGNN baseline even when C=N and the virtual nodes are initialized at the real coordinates, the central approximation claim is falsified.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that a small ordered set of virtual nodes, each with a distinct semantic role, gives an E(3)-equivariant update $f(\vec{x}_i, \vec{Z}) = \vec{x}_i + \sum_{c=1}^C (\vec{z}_c - \vec{x}_i)\psi_c\big(\odot_{c=1}^C \|\vec{z}_c - \vec{x}_i\|^2, m^v\big)$ that is capable of approximating the real-node aggregation, provided the virtual coordinates $\vec{Z}$ approximate the real coordinates $\vec{X}$. The paper enforces that alignment with an E(3)-invariant Maximum Mean Discrepancy loss (Eq. 10), and enforces distinct roles by treating the virtual nodes as an ordered set with separate message-passing functions. FastEGNN realizes this as EGNN-style real-real message passing plus real-virtual message passing, and DistEGNN extends it by sharing the virtual nodes across partitioned devices and synchronizing them during training. The reported consequence is that with 75% of edges dropped, FastEGNN matches or beats full-edge EGNN, and with all edges dropped it degrades gracefully, whereas EGNN collapses to near-linear performance.
Load-bearing premise
The load-bearing premise is that a small, fixed set of virtual nodes whose coordinates match the real nodes' distribution can carry the information that full real-real message passing would have carried.
Editorial extensions
If this is right
- Equivariant GNNs can be run on sparse graphs: dropping 75% of the longest edges costs little accuracy, with FastEGNN-⟨10,0.75⟩ reaching MSE 0.99×10⁻² on the N-body system, better than full-edge EGNN's 1.41×10⁻², at 53% of EGNN's inference time.
- Even with all real-real edges removed, FastEGNN keeps physically meaningful predictions on Water-3D, with MSE 3.40×10⁻⁴ versus 12.38×10⁻⁴ for EGNN with all edges stripped, so virtual nodes alone can carry a substantial share of global information.
- The virtual-node module transfers across architectures: FastRF, FastSchNet, and FastTFN improve over their baselines in accuracy and efficiency, with FastTFN-3-0.75 using 2% of TFN's memory and 20% of its time while lowering MSE by 56%.
- DistEGNN makes 100K-node graphs tractable on modest hardware; with 8 devices, Fluid113K training is 7.34× faster and per-device memory drops from about 48 GB to 1.58 GB, while error only rises 15% across devices compared to 69% for EGNN.
Reading between the lines
- A direct extension of the paper's reasoning is that the virtual-node aggregator's capacity should scale with the complexity of the target interaction: for systems with strong many-body or long-range couplings, $C$ may need to grow with $N$, so a useful test is to measure the p=1.00 error as a function of $C/N$ on the N-body benchmark.
- The same MMD-alignment mechanism could be reused for equivariant output heads beyond coordinates, such as forces or energies, where the virtual coordinates would serve as an invariant summary scaffold rather than as predicted positions; the paper does not test this.
- Because DistEGNN's virtual nodes are synchronized across devices, communication cost is roughly linear in $C$ per layer regardless of partition count, suggesting the speedup over EGNN should keep growing as devices are added; this could be checked by profiling communication time separately from compute time.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces FastEGNN and DistEGNN, two extensions of EGNN that add a small ordered set of learnable virtual nodes. FastEGNN keeps a sparse real-real edge set but connects every real node to every virtual node, using distinct message passing for each virtual channel and an MMD regularizer to encourage spatial alignment between virtual and real coordinates. DistEGNN partitions large graphs across devices and shares the virtual nodes across partitions to propagate global information. The authors report accuracy improvements over EGNN and other baselines on N-body, protein dynamics, Water-3D, and a new Fluid113K benchmark, along with substantial inference speedups when edges are dropped and per-device memory reductions in distributed training. The E(3)-equivariance proof in Appendix A is straightforward and appears correct. The central theoretical claim is that a small fixed set of virtual nodes can approximate the information carried by the full real-node graph, supported by Proposition IV.3, which is conditional on the virtual coordinates 'well approximating' the real coordinates. The main weaknesses are an inconsistency between the MMD formulation in Eq. (10) and the loss in Eq. (11), the lack of any estimate of variance across seeds, and an overstatement of the all-edges-dropped results on N-body.
Significance. If the claims hold, the paper advances the scalability of equivariant GNNs in a useful direction: it shows that a modest number of virtual nodes can preserve much of the expressivity of dense message passing while allowing aggressive edge sparsification, and it provides a concrete distributed scheme that processes graphs with over 100K nodes. The modular extension to RF, SchNet, and TFN broadens the potential impact. The new Fluid113K benchmark and the accompanied code release are concrete community assets. The E(3)-equivariance argument in Appendix A is clean and machine-verifiable in structure. However, the load-bearing premise that virtual nodes approximate the full real-node graph is not yet convincingly validated: the theoretical result is conditional, and the empirical evidence at the extreme edge-dropping rate is mixed, especially on N-body. The MMD target inconsistency and the absence of seed variance prevent the current empirical claims from being fully assessed.
major comments (5)
- [Section IV-C, Eq. (10)-(11)] There is a direct inconsistency between the MMD definition and its use in the loss. Eq. (10) defines LMMD using the predicted real node coordinates x_i^(L), but Eq. (11) writes LMMD(Z^(L), X^GT), i.e., against ground-truth final positions. If the implementation follows Eq. (11), then the regularizer leaks future target information during training while being absent at inference, so the alignment condition assumed by Proposition IV.3 is not guaranteed at test time. If the implementation follows Eq. (10), the paper should correct Eq. (11). The authors should state which target is used and provide an evaluation (e.g., measuring MMD between virtual coordinates and predicted real coordinates at inference) to support the approximation premise.
- [Section IV-D and Table I] The all-edges-dropped claims are overstated. The text says FastEGNN 'can still perform promisingly even when all edges are dropped' and that virtual nodes approximate the real graph, but Table I shows N-body MSE of 9.25–9.72e-2 at p=1.00, which is about 9x worse than the same model with full edges (1.04–1.10e-2) and only modestly better than the Linear baseline (12.66e-2). This contradicts the claim that a small ordered set of virtual nodes effectively approximates the large unordered graph of real nodes. The Water-3D and Protein results at p=1.00 are more supportive, but the N-body result should be discussed honestly and the claim should be restricted to settings where it actually holds.
- [Section VII-B, Tables I-III] No error bars, confidence intervals, or seed variance are reported anywhere in the empirical evaluation. Several accuracy differences used to support design choices are small (e.g., FastEGNN-⟨10,0.75⟩ at 0.99e-2 versus FastEGNN-⟨1,0.75⟩ at 1.03e-2 on N-body; the MMD ablation differences in Table II). Without multiple seeds or a variance estimate, the claimed superiority over baselines and the conclusions of the ablations cannot be reliably assessed. The authors should add seed variance or, at minimum, report the number of seeds and the standard deviation for the main tables.
- [Section IV-D, Proposition IV.3] Proposition IV.3 establishes a universal form for an update that depends only on virtual nodes, but it does not by itself prove that C virtual nodes can approximate the information from N real neighbors. The sentence 'f(x_i,Z) is able to universally approximate the messages from all the real nodes, if the virtual coordinates Z can well approximate the real ones X' is a heuristic bridge, not a theorem. The paper needs either a quantitative statement of approximation error as a function of C and the MMD, or a direct empirical test of the assumption (e.g., measuring the MMD between virtual and real node coordinates at inference on the test set). As written, the theoretical support for the central claim is not load-bearing.
- [Section VII-D, Tables IV-V] The distributed-memory claims should be qualified. While per-device memory is reduced, the total memory across devices grows with the number of devices, and DistEGNN often uses more total memory than EGNN at the same device count (e.g., Fluid113K at 8 devices: DistEGNN-5 total memory 12.62 GB versus EGNN 3.77 GB; relative training time 0.83 versus 0.15). The abstract's phrase 'dramatically reducing memory and computational overhead' is therefore only true per device and relative to the single-device setting. The paper should distinguish per-device and total memory, and should compare against the best feasible single-device baseline (which for Fluid113K is not available) rather than implying a universal overhead reduction.
minor comments (6)
- [Section IV-B, before Proposition IV.1] Typo: 'We have the flowing theoretical assurance' should read 'following'.
- [Section IV-B, Eq. (5)] The notation 'CM' in Eq. (5) is undefined; it appears to denote concatenation over c, but it should be written explicitly (e.g., concatenation symbol) and introduced in the text.
- [Appendix A, Theorem A.5] The phrase 'surjection from dao to' contains a typo; it should be 'surjection from ... to ...' with the intended sets spelled out.
- [Section VII-A and Table VIII] The dataset statistics for Water-3D are inconsistent: the text says 1000/100/100 trajectories, while Table VIII lists 15,000/1,500/1,500 samples. The authors should clarify the units and the relationship between trajectories and training samples.
- [General presentation] Several places contain duplicated or overlapping text blocks (e.g., around Eqs. (14)-(15) and in the captions of Figs. 3-4), likely artifacts of the LaTeX compilation. These should be cleaned before final submission.
- [Section VII-B1, observation 1] The claimed '29% improvement' over EGNN on N-body does not match Table I: 1.04e-2 versus 1.41e-2 is a 26% reduction. Please recompute or correct the percentage.
Circularity Check
No significant circularity; the core derivation is self-contained modulo standard cited lemmas, with one benign self-citation.
full rationale
The paper's central claim, that a small ordered set of virtual nodes can approximate the large real-node graph, is supported by Proposition IV.3, whose proof in the appendix relies on Lemma A.3 from Villar et al. [30] and Lemma A.4/Corollary 2 from the authors' earlier EGMN paper [29]. These are general equivariance theorems with stated assumptions that do not include the target virtual-node result, so citing them is legitimate independent support rather than circularity. The MMD loss in Eq. (11) is an auxiliary training regularizer, not a fitted prediction, and the paper's all-edges-dropped results honestly show that the virtual-node-only regime degrades sharply on N-body, so the empirical claim is not forced by construction. The only self-citation is the transparent footnote that this work extends the authors' ICML 2024 paper [11], and the distributed DistEGNN claims are validated against external EGNN baselines on independently constructed benchmarks. A genuine robustness gap exists: LMMD aligns virtual coordinates to ground-truth positions X^GT rather than to the model's own real coordinates X^(L), and Table IX shows it is estimated from only three sampled nodes on the smaller benchmarks, so the alignment premise of Proposition IV.3 is not guaranteed at inference. This is a correctness or generalization concern, not a circularity by construction, and therefore does not raise the circularity score.
Assumptions & free parameters
free parameters (4)
- Number of virtual nodes C =
1, 3, 10 (and 5 for Fluid113K)
- MMD bandwidth sigma (Eq. 10) =
1.5 (N-body), 1.0 (Protein), 1.5 (Water-3D), 3.0 (Fluid113K)
- MMD balancing factor lambda (Eq. 11) =
0.03, 0.50, 0.01, 0.01
- Edge dropping rate p =
0.00, 0.75, 1.00
assumptions (3)
- standard math Equivariant universal-approximation lemmas from [29] and [30] hold as cited.
- domain assumption Virtual node coordinates, after MMD regularization, sufficiently approximate the real node distribution for Proposition IV.3 to apply.
- standard math Center-of-mass initialization of virtual nodes preserves E(3)-equivariance and permutation invariance of the updates.
invented entities (1)
-
Ordered learnable virtual nodes (coordinates Z and features S)
Cite this review
Pith. "Pith review of Fast and Distributed Equivariant Graph Neural Networks by Virtual Node Learning." pith.science (2026). https://pith.science/paper/SQHOWSJL
@misc{pith2026250619482,
author = {Pith},
title = {Pith review of: Fast and Distributed Equivariant Graph Neural Networks by Virtual Node Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/SQHOWSJL}},
note = {Machine review of arXiv:2506.19482}
}
read the original abstract
Equivariant Graph Neural Networks (GNNs) have achieved remarkable success across diverse scientific applications. However, existing approaches face critical efficiency challenges when scaling to large geometric graphs and suffer significant performance degradation when the input graphs are sparsified for computational tractability. To address these limitations, we introduce FastEGNN and DistEGNN, two novel enhancements to equivariant GNNs for large-scale geometric graphs. FastEGNN employs a key innovation: a small ordered set of virtual nodes that effectively approximates the large unordered graph of real nodes. Specifically, we implement distinct message passing and aggregation mechanisms for different virtual nodes to ensure mutual distinctiveness, and minimize Maximum Mean Discrepancy (MMD) between virtual and real coordinates to achieve global distributedness. This design enables FastEGNN to maintain high accuracy while efficiently processing large-scale sparse graphs. For extremely large-scale geometric graphs, we present DistEGNN, a distributed extension where virtual nodes act as global bridges between subgraphs in different devices, maintaining consistency while dramatically reducing memory and computational overhead. We comprehensively evaluate our models across four challenging domains: N-body systems (100 nodes), protein dynamics (800 nodes), Water-3D (8,000 nodes), and our new Fluid113K benchmark (113,000 nodes). Results demonstrate superior efficiency and performance, establishing new capabilities in large-scale equivariant graph learning. Code is available at https://github.com/GLAD-RUC/DistEGNN.
Figures
Figures from the paper (4 more)
Reference graph
Works this paper leans on
-
[1]
Geometric deep learning: Grids, groups, graphs, geodesics, and gauges,
M. M. Bronstein, J. Bruna, T. Cohen, and P. Veli ˇckovi´c, “Geometric deep learning: Grids, groups, graphs, geodesics, and gauges,” arXiv preprint arXiv:2104.13478 , 2021
arXiv 2021
-
[2]
A survey of geometric graph neural networks: data structures, models and applications,
J. Han, J. Cen, L. Wu, Z. Li, X. Kong, R. Jiao, Z. Yu, T. Xu, F. Wu, Z. Wang et al. , “A survey of geometric graph neural networks: data structures, models and applications,” Frontiers of Computer Science , vol. 19, no. 11, p. 1911375, 2025
work page 2025
-
[3]
A hitchhiker’s guide to geometric gnns for 3d atomic systems,
A. Duval, S. V . Mathis, C. K. Joshi, V . Schmidt, S. Miret, F. D. Malliaros, T. Cohen, P. Lio, Y . Bengio, and M. Bronstein, “A hitchhiker’s guide to geometric gnns for 3d atomic systems,” arXiv preprint arXiv:2312.07511 , 2023
arXiv 2023
-
[4]
Artificial intelligence for science in quantum, atomistic, and continuum systems,
X. Zhang, L. Wang, J. Helwig, Y . Luo, C. Fu, Y . Xie, M. Liu, Y . Lin, Z. Xu, K. Yan, K. Adams, M. Weiler, X. Li, T. Fu, Y . Wang, A. Strasser, H. Yu, Y . Xie, X. Fu, S. Xu, Y . Liu, Y . Du, A. Saxton, H. Ling, H. Lawrence, H. Stärk, S. Gui, C. Edwards, N. Gao, A. Ladera, T. Wu, E. F. Hofgard, A. M. Tehrani, R. Wang, A. Daigavane, M. Bohde, J. Kurtin, Q....
arXiv 2023
-
[5]
Equivariant spatio-temporal attentive graph networks to simulate physical dynamics,
L. Wu, Z. Hou, J. Yuan, Y . Rong, and W. Huang, “Equivariant spatio-temporal attentive graph networks to simulate physical dynamics,” in Thirty-seventh Conference on Neural Information Processing Systems, 2023
work page 2023
-
[6]
Equivariant graph neural operator for modeling 3d dynamics,
M. Xu, J. Han, A. Lou, J. Kossaifi, A. Ramanathan, K. Az- izzadenesheli, J. Leskovec, S. Ermon, and A. Anandkumar, “Equivariant graph neural operator for modeling 3d dynamics,” in Forty-first International Conference on Machine Learning , 2024
work page 2024
-
[7]
De novo design of protein structure and function with rfdiffusion,
J. L. Watson, D. Juergens, N. R. Bennett, B. L. Trippe, J. Yim, H. E. Eisenach, W. Ahern, A. J. Borst, R. J. Ragotte, L. F. Milles et al., “De novo design of protein structure and function with rfdiffusion,” Nature, vol. 620, no. 7976, pp. 1089–1100, 2023
work page 2023
-
[8]
Illuminating protein space with a programmable generative model,
J. B. Ingraham, M. Baranov, Z. Costello, K. W. Barber, W. Wang, A. Ismail, V . Frappier, D. M. Lord, C. Ng-Thow- Hing, E. R. Van Vlack et al., “Illuminating protein space with a programmable generative model,” Nature, vol. 623, no. 7989, pp. 1070–1078, Nov 2023
work page 2023
Show all 40 references
-
[9]
E (n) equiv- ariant graph neural networks,
V . G. Satorras, E. Hoogeboom, and M. Welling, “E (n) equiv- ariant graph neural networks,” in International Conference on Machine Learning. PMLR, 2021, pp. 9323–9332
2021
-
[10]
The fast multipole method: numerical implementa- tion,
E. Darve, “The fast multipole method: numerical implementa- tion,” Journal of Computational Physics , vol. 160, no. 1, pp. 195–240, 2000
2000
-
[11]
Improving equivariant graph neural networks on large geometric graphs via virtual nodes learning,
Y . Zhang, J. Cen, J. Han, Z. Zhang, J. ZHOU, and W. Huang, “Improving equivariant graph neural networks on large geometric graphs via virtual nodes learning,” in Forty-first International Conference on Machine Learning , 2024
2024
-
[12]
Integrating structured biological data by kernel maximum mean discrepancy,
K. M. Borgwardt, A. Gretton, M. J. Rasch, H.-P. Kriegel, B. Schölkopf, and A. J. Smola, “Integrating structured biological data by kernel maximum mean discrepancy,” Bioinformatics, vol. 22, no. 14, pp. e49–e57, 2006
2006
-
[13]
Schnet–a deep learning architecture for molecules and materials,
K. T. Schütt, H. E. Sauceda, P.-J. Kindermans, A. Tkatchenko, and K.-R. Müller, “Schnet–a deep learning architecture for molecules and materials,” The Journal of Chemical Physics , vol. 148, no. 24, p. 241722, 2018
2018
-
[14]
Directional message passing for molecular graphs,
J. Klicpera, J. Groß, and S. Günnemann, “Directional message passing for molecular graphs,” in International Conference on Learning Representations, 2020
2020
-
[15]
Tensor field networks: Rotation-and translation- equivariant neural networks for 3d point clouds,
N. Thomas, T. Smidt, S. Kearnes, L. Yang, L. Li, K. Kohlhoff, and P. Riley, “Tensor field networks: Rotation-and translation- equivariant neural networks for 3d point clouds,” arXiv preprint arXiv:1802.08219, 2018
2018 arXiv
-
[16]
Geometric and physical quantities improve e(3) equivariant message passing,
J. Brandstetter, R. Hesselink, E. van der Pol, E. J. Bekkers, and M. Welling, “Geometric and physical quantities improve e(3) equivariant message passing,” in International Conference on Learning Representations, 2022
2022
-
[17]
Se(3)- transformers: 3d roto-translation equivariant attention networks,
F. Fuchs, D. Worrall, V . Fischer, and M. Welling, “Se(3)- transformers: 3d roto-translation equivariant attention networks,” in Annual Conference on Neural Information Processing Systems, vol. 33, 2020
2020
-
[18]
Equivariant flows: sampling configurations for multi-body systems with symmetric energies,
J. Köhler, L. Klein, and F. Noé, “Equivariant flows: sampling configurations for multi-body systems with symmetric energies,” arXiv preprint arXiv:1910.00753 , 2019
1910 arXiv
-
[19]
Learning from protein structure with geometric vector perceptrons,
B. Jing, S. Eismann, P. Suriana, R. J. L. Townshend, and R. Dror, “Learning from protein structure with geometric vector perceptrons,” in International Conference on Learning Representations, 2021
2021
-
[20]
Are high- degree representations really unnecessary in equivariant graph neural networks?
J. Cen, A. Li, N. Lin, Y . Ren, Z. Wang, and W. Huang, “Are high- degree representations really unnecessary in equivariant graph neural networks?” in Annual Conference on Neural Information Processing Systems, 2024
2024
-
[21]
Neural message passing for quantum chemistry,
J. Gilmer, S. S. Schoenholz, P. F. Riley, O. Vinyals, and G. E. Dahl, “Neural message passing for quantum chemistry,” in International Conference on Machine Learning , 2017
2017
-
[22]
Graph classi- fication via deep learning with virtual nodes,
T. Pham, T. Tran, H. Dam, and S. Venkatesh, “Graph classi- fication via deep learning with virtual nodes,” arXiv preprint arXiv:1708.04357, 2017
2017 arXiv
-
[23]
An analysis of virtual nodes in graph neural networks for link prediction,
E. Hwang, V . Thost, S. S. Dasgupta, and T. Ma, “An analysis of virtual nodes in graph neural networks for link prediction,” in The First Learning on Graphs Conference , 2022
2022
-
[24]
Learning physical dynamics with subequivariant graph neural networks,
J. Han, W. Huang, H. Ma, J. Li, J. B. Tenenbaum, and C. Gan, “Learning physical dynamics with subequivariant graph neural networks,” in Advances in Neural Information Processing Systems, 2022
2022
-
[25]
Conditional antibody design as 3d equivariant graph translation,
X. Kong, W. Huang, and Y . Liu, “Conditional antibody design as 3d equivariant graph translation,” in The Eleventh International Conference on Learning Representations , 2023
2023
-
[26]
Graph neural networks: Scalability,
H. Ma, Y . Rong, and J. Huang, “Graph neural networks: Scalability,” Graph Neural Networks: Foundations, Frontiers, and Applications, pp. 99–119, 2022
2022
-
[27]
Scalable and effective graph neural networks via trainable random walk sampling,
H. Ding, Z. Wei, and Y . Ye, “Scalable and effective graph neural networks via trainable random walk sampling,” IEEE Transactions on Knowledge and Data Engineering , vol. 37, no. 2, pp. 896–909, 2025
2025
-
[28]
Distgnn: Scalable distributed training for large-scale graph neural networks,
V . Md, S. Misra, G. Ma, R. Mohanty, E. Georganas, A. Heinecke, D. Kalamkar, N. K. Ahmed, and S. Avancha, “Distgnn: Scalable distributed training for large-scale graph neural networks,” in Proceedings of the International Conference for High Perfor- mance Computing, Networking...
2021
-
[29]
Equivariant graph mechanics networks with constraints,
W. Huang, J. Han, Y . Rong, T. Xu, F. Sun, and J. Huang, “Equivariant graph mechanics networks with constraints,” in International Conference on Learning Representations , 2022
2022
-
[30]
Scalars are universal: Equivariant machine learning, structured like classical physics,
S. Villar, D. W. Hogg, K. Storey-Fisher, W. Yao, and B. Blum- Smith, “Scalars are universal: Equivariant machine learning, structured like classical physics,” in Annual Conference on Neural Information Processing Systems , 2021
2021
-
[31]
Metis—a software package for parti- tioning unstructured graphs, partitioning meshes and computing fill-reducing ordering of sparse matrices,
G. Karypis and V . Kumar, “Metis—a software package for parti- tioning unstructured graphs, partitioning meshes and computing fill-reducing ordering of sparse matrices,” 01 1997
1997
-
[32]
Neu- ral relational inference for interacting systems,
T. Kipf, E. Fetaya, K.-C. Wang, M. Welling, and R. Zemel, “Neu- ral relational inference for interacting systems,” in International Conference on Machine Learning , 2018
2018
-
[33]
Equivariant graph hierarchy-based neural networks,
J. Han, W. Huang, T. Xu, and Y . Rong, “Equivariant graph hierarchy-based neural networks,” in Annual Conference on Neural Information Processing Systems , 2022
2022
-
[34]
MDAnalysis: A Python Package for the Rapid Analysis of Molecular Dynamics Simulations,
Richard J. Gowers, Max Linke, Jonathan Barnoud, Tyler J. E. Reddy, Manuel N. Melo, Sean L. Seyler, Jan Doma ´nski, David L. Dotson, Sébastien Buchoux, Ian M. Kenney, and Oliver Beckstein, “MDAnalysis: A Python Package for the Rapid Analysis of Molecular Dynamics Simulations,” ...
2016
-
[35]
Molecular dynamics trajectory for benchmarking mdanalysis,
S. Seyler and O. Beckstein, “Molecular dynamics trajectory for benchmarking mdanalysis,” p. m9, 2017
2017
-
[36]
Learning to simulate complex physics with graph networks,
A. Sanchez-Gonzalez, J. Godwin, T. Pfaff, R. Ying, J. Leskovec, and P. Battaglia, “Learning to simulate complex physics with graph networks,” in International Conference on Machine Learning. PMLR, 2020, pp. 8459–8468
2020
-
[37]
La- grangian fluid simulation with continuous convolutions,
B. Ummenhofer, L. Prantl, N. Thuerey, and V . Koltun, “La- grangian fluid simulation with continuous convolutions,” in International Conference on Learning Representations , 2020
2020
-
[38]
SPlisHSPlasH Library
J. Bender et al., “SPlisHSPlasH Library.” [Online]. Available: https://github.com/InteractiveComputerGraphics/SPlisHSPlasH 17 APPENDIX A. Proof Theorem A.1 (Propostion IV .1). If the initialization of the virtual nodes satisfies Eq. (2), then after Eqs. (3) to (9), the output ...
-
[39]
AMONG THEM , F LUID 113K IS OUR GENERATED LARGE -SCALE FLUID SIMULATION DATASET , WHERE EACH GRAPH CONTAINS OVER 100K NODES AND AN AVERAGE OF 1.7M EDGES
Dataset Details TABLE VIII BASIC STATISTICS OF THE FOUR DATASETS , WITH GRAPH SIZES INCREASING PROGRESSIVELY . AMONG THEM , F LUID 113K IS OUR GENERATED LARGE -SCALE FLUID SIMULATION DATASET , WHERE EACH GRAPH CONTAINS OVER 100K NODES AND AN AVERAGE OF 1.7M EDGES . N-body Syst...
-
[40]
(10) 1.5 1 .0 1 .5 3 .0 Balancing factor λ in Eq
Implementation Details TABLE IX DEFAULT HYPER -PARAMETERS ON FOUR DATASETS Hyperparameter N-body System Protein Dynamics Water-3D Fluid-113K Bandwidth σ in Eq. (10) 1.5 1 .0 1 .5 3 .0 Balancing factor λ in Eq. (11) 0.03 0 .50 0 .01 0 .01 Number of Sampled Nodes N in Eq. (10) 3...
2000
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.