REVIEW 3 major objections 6 minor 92 references
A latent-dynamics graph convolutional network can reduce time-dependent parameterized PDEs to a few latent coordinates, reconstructing full fields on unstructured meshes with accuracy that beats a graph autoencoder at half the parameters.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
LD-GCN couples an encoder-free latent-space neural ODE with a graph convolutional decoder, achieving accurate reduced-order modeling of time-dependent parameterized PDEs and detecting bifurcations from the latent trajectories.
T0 review reviewed 2026-08-03 challenge →
load-bearing objection Solid empirical MOR paper combining LDNet and GCA-ROM; the UAT is proven for a simpler model than the one benchmarked, so the math claim is oversold but the benchmarks stand. the 3 major comments →
Latent Dynamics Graph Convolutional Networks for model order reduction of parameterized time-dependent PDEs
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
Core claim
The central discovery is that a latent dynamics network does not need an encoder to compress full-order states: if the initial condition is fixed and the dynamics is modeled by a neural ODE in a low-dimensional latent space, the latent trajectory itself is a global, geometry-independent representation of the system. A graph convolutional decoder then reconstructs the full solution on the mesh, and the paper proves (Corollary 2.6) that, under a 'perfect embedding' assumption, such an encoder-free model can approximate the parameter-to-solution map to arbitrary accuracy. Numerically, the model matches or beats the state-of-the-art graph autoencoder ROM GCA-ROM on advection-dominated problems w
What carries the argument
The key mechanism is the LD-GCN architecture, consisting of (i) a Neural Ordinary Differential Equation (NODE) defined on a low-dimensional latent space, with the latent initial condition fixed to zero for every trajectory, that advances the latent state by explicit Euler time-stepping; and (ii) a graph convolutional decoder (a feedforward network followed by message-passing layers) that maps the latent state, together with time and signal, to the solution values on all mesh nodes. The theoretical backbone is Corollary 2.6, a universal approximation theorem for encoder-free architectures, whose proof reduces the graph decoder to a fully connected network by setting convolutional weights to z
Load-bearing premise
The load-bearing premise is that the initial condition of the PDE is fixed across all parameter instances, so the latent state can be initialized at zero for every trajectory; the numerical experiments in the paper discard early snapshots, so in practice the initial state varies with the parameter, and the theoretical guarantee proven for the encoder-free model does not directly apply to the model as run.
What would settle it
Implement LD-GCN on a parameterized PDE with a genuinely parameter-dependent initial field and keep the latent start fixed at zero. If the model's error grows substantially, or if removing the decoder's explicit dependence on µ(t) destroys accuracy, then the encoder-free universal approximation claim does not actually apply to the varying-initial-condition setting the benchmarks use.
If this is right
- Temporal extrapolation: because the latent dynamics is integrated in time, LD-GCN can predict solutions beyond the last training time step.
- Zero-shot parameter predictions: interpolating latent trajectories via splines or Gaussian processes yields solutions for unseen parameter values without performing latent time integration.
- Interpretable reduced dynamics: the latent coordinates are smooth and cluster by parameter value, and a scalar amplitude of a latent variable reproduces the pitchfork bifurcation diagram of a Coandă flow.
- Parameter efficiency: the encoder-free design uses about 50% fewer trainable parameters than GCA-ROM while improving accuracy on the tested benchmarks.
- Geometric flexibility: the graph decoder naturally supports unstructured meshes and geometrically parameterized domains, as shown in a moving-hole advection test case.
Where Pith is reading between the lines
- The fixed-initial-condition assumption in Corollary 2.6 is not met by the numerical benchmarks (which discard early snapshots), so the paper's universal approximation guarantee does not literally cover the model as run; the authors concede in Appendix A that the decoder then depends on the signal µ(t) to compensate. A direct extension would be to learn a parameter-dependent latent initial state.
- The latent-space bifurcation detection could be turned into a practical screening tool: one could scan parameter space by interpolating latent trajectories and looking for amplitude changes or sign flips, without running any full-order solver.
- The fact that spline and Gaussian-process interpolation nearly match the integrated LD-GCN suggests the regularizing effect of the latent dynamics may be doing much of the work; an ablation that removes the NODE and directly learns a map (t, µ) → s(t, µ) would isolate the benefit of causal time integration.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces LD-GCN, an encoder-free model-order-reduction architecture that couples a latent-space neural ODE with a graph-convolutional decoder. The method is tested on four parameterized time-dependent benchmarks (two advection–diffusion problems, lid-driven cavity flow, and the Coandă-effect Navier–Stokes problem), with reported improvements over GCA-ROM and a claimed performance comparable to LDNet. The manuscript also proves a universal approximation theorem for an encoder-free architecture, derives a Lipschitz-based interpolation error bound, and demonstrates that latent trajectories can reveal bifurcation structure. The paper is clearly written, includes a link to code, and provides concrete error numbers for each benchmark.
Significance. If the empirical results hold, the architecture is a genuinely useful contribution: it combines interpretable latent dynamics with geometric inductive biases, supports time extrapolation, and the latent bifurcation analysis is an insightful demonstration. The release of code and the explicit reporting of errors across four nontrivial problems are commendable and strengthen reproducibility. However, the theoretical certificate is substantially narrower than claimed, and the empirical comparisons rest on single runs, so the significance of the paper in its current form is reduced.
major comments (3)
- [§2.4.1, Corollary 2.6 and Eq. (8)] The UAT is proved for a model with a fixed initial condition u_h(t0) for all µ, a dynamics network N_Ndyn: I×R^{dµ}→R^n with no latent-state input, and a decoder N_Ndec: R^n→R^{Nh} with no t or µ dependence. The architecture actually trained in every benchmark has N_Ndyn(t,s(t),µ(t)) and, except for Coandă, N_Ndec(t,s(t),µ(t)). Appendix A states this dependence is introduced precisely because the retained initial condition varies with µ; moreover, in SA, MH, and cavity the first snapshot is removed, so the retained initial state at the first training time is parameter-dependent. Thus the fixed-initial-condition premise is violated in all experiments, and the proof does not extend to the stateful dynamics network. The abstract's claim that the methodology is 'mathematically validated via a UAT' therefore overstates what is proven: the theorem applies to a simpler, less expressive model th
- [Tables 1–2; Figs. 2a, 4] All reported errors are single-run point estimates. No seeds, error bars, or repeated-training statistics are provided. The headline comparative claims — LD-GCN outperforms GCA-ROM and is comparable to LDNet — are based on differences between single numbers (e.g., SA n=3 εmax 5.26e-2 vs 9.75e-2; cavity NRMSE 6.79e-3 vs 1.39e-3 for LDNet at a different latent dimension). Given the stochasticity of neural-network training, these differences may lie within run-to-run variability. Multi-seed means and standard deviations (or at least a sensitivity statement) are needed to support the comparative conclusions.
- [§3.2.2, Table 2] The claim that LD-GCN achieves 'performance comparable to LDNet' in the cavity benchmark is not strongly supported by the numbers: NRMSE=6.79e-3 for LD-GCN (n=3) versus 1.39e-3 for LDNet (n=10). While both are O(10^-3), a factor of roughly 5 is a meaningful gap in an MOR accuracy comparison. Since this is the only direct LDNet comparison in the paper, the text should either qualify the claim, compare at the same latent dimension, or provide additional context for why this gap is acceptable.
minor comments (6)
- [§2.5 and §3.1.4] In the definition of u_interp, 'N_Ndyn' should be 'N_Ndec' in both places. The current text writes u_interp(t,µ) = N_Ndyn(t, ˜s(t;µ),µ), but it is the decoder that maps the latent state to the physical field.
- [Remark 2.9] The phrase 'if the result of Proposition 9 holds' should refer to Proposition 2.8.
- [Algorithm 1, line 11] The integration uses N_int = floor(h/Δt). If h is not a multiple of Δt, the final partial step is discarded and the latent state is not advanced exactly to t_{k+1}. Please state that Δt divides h in all experiments, or describe how the remainder is handled.
- [Fig. 12b] The y-axis labels 'u2,h(T) 2' and 'u2,sim(T) 2' are unclear. Presumably this denotes the squared vertical-velocity component at final time; please clarify the notation.
- [§3.2, Eq. (16)] The regularization term L_ε is said to depend on a parameter ε, but its explicit form is not given in the text. A brief definition or a precise pointer to [79] would help.
- [§3.1.2] The first snapshot is removed from the SA trajectories 'for consistency with other test cases,' even though the true initial condition is identical for all µ. This removal is exactly what makes the retained initial state parameter-dependent and thus violates the fixed-initial-condition hypothesis of Corollary 2.6. The authors should comment on whether the fixed-initial-condition setting was also tested.
Circularity Check
No significant circularity: the UAT is an explicit corollary of a stated external theorem, the interpolation bound is an explicit triangle inequality, and no fitted quantity is relabeled as a prediction.
full rationale
The claimed derivation chain is self-contained rather than circular. Corollary 2.6 is explicitly derived from the external theorem in [26] under the stated perfect-embedding and fixed-initial-condition assumptions; the only new part of the proof is the valid containment argument that setting all graph-convolutional weights to zero reduces the GCN decoder to a feedforward network (Section 2.4.1). This does not assume the conclusion. Proposition 2.8 is an explicit triangle-inequality decomposition, u_h - u_interp = (u_h - u_sim) + (u_sim - u_interp), with the Lipschitz constant and interpolation error as stated hypotheses, not as fitted outputs called predictions. The numerical benchmarks are external checks against finite-element data, and the reported improvements over GCA-ROM are empirical comparisons, not consequences of the theoretical statements. The paper's own caveats—Corollary 2.6 assumes a fixed initial condition and a dynamics network without latent-state input, while Appendix A concedes that the decoder is made to depend on (t, mu(t)) because 'the initial condition changes slightly for each instance of mu' and 'the only way to account for different initial conditions is to let the decoder depend on mu(t)'—identify a limitation in the scope of the theoretical guarantee relative to the deployed architecture. That is a validation-gap/overclaim issue, not a circular reduction: the theorem still has independent mathematical content for the fixed-initial-condition, constant-signal class it addresses. The self-citations used for the decoder template ([67]) and the Coandă benchmark setup ([85,69]) are published architectural/benchmark context, not load-bearing derivations that reduce the paper's claims to their own inputs. Therefore no prediction reduces by construction to its input, and no load-bearing argument reduces to an unverified self-citation.
Axiom & Free-Parameter Ledger
free parameters (5)
- latent dimension n =
3 (SA, cavity), 15 (MH), 2 (Coandă)
- integration step Δt for latent Euler =
1e-2 (SA/MH), 5e-2 (cavity), 5e-1 (Coandă)
- L1 regularization weight λ =
1e-5
- cavity loss hyperparameters δ, ε =
δ=1e-1, ε=1e-4
- GPR kernel hyperparameters (length scales, noise variance) =
ℓ initialized [0.1,0.5,0.5], σ²_n=1e-3, then optimized by marginal likelihood
axioms (4)
- domain assumption Perfect embedding assumption (Definition 2.5): there exist C^1 decoder Φ, Lipschitz latent dynamics f_n, and encoder Ψ such that the full-order solution equals Φ(s(t)) and the latent state obeys ṡ = f_n(t,s,µ) for all (t,µ).
- domain assumption Fixed initial condition shared by all parameter instances (Corollary 2.6): u_h(t0) is the same for all µ, and latent initial state s(t0)=0.
- domain assumption Well-posedness and causality of the signal-to-solution map S: P → U (Section 2.1).
- domain assumption Fixed mesh grid: number of nodes Nh and mesh connectivity are fixed across all parameter instances (Sections 2.1 and 2.4).
Cite this review
Pith. "Pith review of Latent Dynamics Graph Convolutional Networks for model order reduction of parameterized time-dependent PDEs." pith.science (2026). https://pith.science/paper/O4X2TWJU
@misc{pith2026260111259,
author = {Pith},
title = {Pith review of: Latent Dynamics Graph Convolutional Networks for model order reduction of parameterized time-dependent PDEs},
year = {2026},
howpublished = {\url{https://pith.science/paper/O4X2TWJU}},
note = {Machine review of arXiv:2601.11259}
}
read the original abstract
Graph Neural Networks (GNNs) are emerging as powerful tools for nonlinear Model Order Reduction (MOR) of time-dependent parameterized Partial Differential Equations (PDEs). However, existing methodologies struggle to combine geometric inductive biases with interpretable latent behavior, overlooking dynamics-driven features or disregarding spatial information. In this work, we address this gap by introducing Latent Dynamics Graph Convolutional Network (LD-GCN), a purely data-driven, encoder-free architecture that learns a global, low-dimensional representation of dynamical systems conditioned on external inputs and parameters. The temporal evolution is modeled in the latent space and advanced through time-stepping, allowing for time-extrapolation, and the trajectories are consistently decoded onto geometrically parameterized domains using a GNN. Our framework enhances interpretability by enabling the analysis of the reduced dynamics and supporting zero-shot prediction through latent interpolation. The methodology is mathematically validated via a universal approximation theorem for encoder-free architectures, and numerically tested on complex computational mechanics problems involving physical and geometric parameters, including the detection of bifurcating phenomena for Navier-Stokes equations. Code availability: https://github.com/lorenzotomada/ld-gcn-rom
Figures
Reference graph
Works this paper leans on
-
[1]
Flexible SE(2) graph neural networks with applications to PDE surrogates
M. Bånkestad, O. Mogren, and A. Pirinen.Flexible SE(2) graph neural networks with applications to PDE surrogates. arXiv:2405.20287 [cs]. 2024.doi:10.48550/arXiv.2405.20287
work page internal anchor Pith review Pith/arXiv arXiv doi:10.48550/arxiv.2405.20287 2024
-
[2]
Regularized linear autoencoders recover the principal components, eventually
X. Bao et al. “Regularized linear autoencoders recover the principal components, eventually”. In: Proceedings of the 34th International Conference on Neural Information Processing Systems. NIPS ’20. Red Hook, NY, USA: Curran Associates Inc., 2020, pp. 6971–6981.url:https://dl.acm.org/ doi/10.5555/3495724.3496309
arXiv 2020
-
[3]
Multiscale graph neural network autoencoders for interpretable scientific machine learning
S. Barwey et al. “Multiscale graph neural network autoencoders for interpretable scientific machine learning”. In:Journal of Computational Physics495 (2023), p. 112537.doi:10.1016/j.jcp.2023. 112537
-
[4]
Combining Differentiable PDE Solvers and Graph Neural Networks for Fluid Flow Prediction
F. D. A. Belbute-Peres, T. Economon, and Z. Kolter. “Combining Differentiable PDE Solvers and Graph Neural Networks for Fluid Flow Prediction”. en. In:Proceedings of the 37th International Conference on Machine Learning. PMLR, 2020, pp. 2402–2411.url:https : / / proceedings . mlr . press/v119/de-avila-belbute-peres20a.html
2020
-
[5]
Benner et al.Model Reduction and Approximation
P. Benner et al.Model Reduction and Approximation. Computational Science & Engineering. Society for Industrial and Applied Mathematics, 2017.doi:10.1137/1.9781611974829
-
[6]
Uncertainty Modeling in Graph Neural Networks via Stochastic Differential Equa- tions
R. Bergna et al. “Uncertainty Modeling in Graph Neural Networks via Stochastic Differential Equa- tions”. In:The Thirteenth International Conference on Learning Representations. 2025.url:https: //openreview.net/forum?id=TYSQYx9vwd
2025
-
[7]
Error estimates for deep learning methods in fluid dynamics
A. Biswas, J. Tian, and S. Ulusoy. “Error estimates for deep learning methods in fluid dynamics”. en. In:Numerische Mathematik151.3 (2022), pp. 753–777.doi:10.1007/s00211-022-01294-z
-
[8]
C. Bonneville et al.A Comprehensive Review of Latent Space Dynamics Identification Algorithms for Intrusive and Non-Intrusive Reduced-Order-Modeling. arXiv:2403.10748 [cs]. 2024.doi:10 . 48550 / arXiv.2403.10748
-
[9]
C. Bonneville et al.Extrapolating Phase-Field Simulations in Space and Time with Purely Convolu- tional Architectures. arXiv:2509.20770 [cs] version: 1. 2025.doi:10.48550/arXiv.2509.20770
-
[10]
N. Bouziani and N. Boullé.Structure-Preserving Operator Learning. arXiv:2410.01065 [cs]. 2024.doi: 10.48550/arXiv.2410.01065
-
[11]
Message Passing Neural PDE Solvers
J. Brandstetter, D. E. Worrall, and M. Welling. “Message Passing Neural PDE Solvers”. In:Inter- national Conference on Learning Representations. 2022.url:https://openreview.net/forum?id= vSix3HPYKSU
2022
-
[12]
Geometric and Physical Quantities improve E(3) Equivariant Message Passing
J. Brandstetter et al. “Geometric and Physical Quantities improve E(3) Equivariant Message Passing”. In:International Conference on Learning Representations. 2022.url:https : / / openreview . net / forum?id=_xwr8gOBeV1
2022
-
[13]
S. Brivio et al. “Error estimates for POD-DL-ROMs: a deep learning framework for reduced order mod- eling of nonlinear parametrized PDEs enhanced by proper orthogonal decomposition”. In:Advances in Computational Mathematics50.3 (2024), p. 33.doi:10.1007/s10444-024-10110-1
-
[14]
M. M. Bronstein et al.Geometric Deep Learning: Grids, Groups, Graphs, Geodesics, and Gauges. arXiv:2104.13478 [cs]. 2021.doi:10.48550/arXiv.2104.13478
-
[15]
S. L. Brunton and J. N. Kutz.Data-Driven Science and Engineering: Machine Learning, Dynam- ical Systems, and Control. Cambridge University Press, 2019.doi:https : / / doi . org / 10 . 1017 / 9781108380690
2019
-
[16]
Discovering governing equations from data by sparse identification of nonlinear dynamical systems
S. L. Brunton, J. L. Proctor, and J. N. Kutz. “Discovering governing equations from data by sparse identification of nonlinear dynamical systems”. In:Proceedings of the National Academy of Sciences 113.15 (2016). Publisher: Proceedings of the National Academy of Sciences, pp. 3932–3937.doi:10. 1073/pnas.1517384113
2016
-
[17]
Proper Orthogonal Decomposition Extensions for Parametric Applications in Compressible Aerodynamics
T. Bui-Thanh, M. Damodaran, and K. Willcox. “Proper Orthogonal Decomposition Extensions for Parametric Applications in Compressible Aerodynamics”. en. In:21st AIAA Applied Aerodynamics Conference. Orlando, Florida: American Institute of Aeronautics and Astronautics, 2003.doi:10 . 2514/6.2003-4213
2003
-
[18]
Data-driven discovery of coordinates and governing equations
K. Champion et al. “Data-driven discovery of coordinates and governing equations”. In:Proceedings of the National Academy of Sciences116.45 (2019). Publisher: Proceedings of the National Academy of Sciences, pp. 22445–22451.doi:10.1073/pnas.1906995116
-
[19]
Neural Ordinary Differential Equations
R. T. Q. Chen et al. “Neural Ordinary Differential Equations”. In:Advances in Neural Information Processing Systems. Vol. 31. Curran Associates, Inc., 2018.url:https://proceedings.neurips.cc/ paper_files/paper/2018/hash/69386f6bb1dfed68692a24c8686939b9-Abstract.html. REFERENCES 27
2018
-
[20]
Chen et al.Time Extrapolation with Graph Convolutional Autoencoder and Tensor Train Decom- position
Y. Chen et al.Time Extrapolation with Graph Convolutional Autoencoder and Tensor Train Decom- position. arXiv:2511.23037 [math]. 2025.doi:10.48550/arXiv.2511.23037
-
[21]
P. Conti et al. “Reduced order modeling of parametrized systems through autoencoders and SINDy approach: continuation of periodic solutions”. In:Computer Methods in Applied Mechanics and Engi- neering411 (2023). Publisher: Elsevier BV, p. 116072.doi:10.1016/j.cma.2023.116072
arXiv 2023
-
[22]
A non-intrusive approach for the reconstruction of POD modal coefficients through active subspaces
N. Demo, M. Tezzele, and G. Rozza. “A non-intrusive approach for the reconstruction of POD modal coefficients through active subspaces”. In:Comptes Rendus Mécanique. Data-Based Engineering Sci- ence and Technology 347.11 (2019), pp. 873–881.doi:10.1016/j.crme.2019.11.012
-
[23]
H. A. Dijkstra and F. W. Wubs.Bifurcation Analysis of Fluid Flows. Cambridge University Press, 2023.doi:DOI:https://doi.org/10.1017/9781108863148
-
[24]
Non-intrusive data-driven reduced-order modeling for time-dependent parametrized problems
J. Duan and J. S. Hesthaven. “Non-intrusive data-driven reduced-order modeling for time-dependent parametrized problems”. In:Journal of Computational Physics497 (2024), p. 112621.doi:10.1016/ j.jcp.2023.112621
arXiv 2024
-
[25]
Shallow recurrent decoder for reduced order modeling of E× B plasma dynamics
F. Faraji, M. Reza, and J. N. Kutz. “Shallow recurrent decoder for reduced order modeling of E× B plasma dynamics”. en. In:Machine Learning: Science and Technology6.2 (2025), p. 025024.doi: 10.1088/2632-2153/adcd20
-
[26]
On latent dynamics learning in nonlinear reduced order modeling
N. Farenga et al. “On latent dynamics learning in nonlinear reduced order modeling”. In:Neural Networks185 (2025), p. 107146.doi:10.1016/j.neunet.2025.107146
arXiv 2025
-
[27]
M. Fedele et al. “A comprehensive and biophysically detailed computational model of the whole human heart electromechanics”. In:Computer Methods in Applied Mechanics and Engineering410 (2023), p. 115983.doi:10.1016/j.cma.2023.115983
arXiv 2023
-
[28]
Fey et al.PyG 2.0: Scalable Learning on Real World Graphs
M. Fey et al.PyG 2.0: Scalable Learning on Real World Graphs. arXiv:2507.16991 [cs]. 2025.doi: 10.48550/arXiv.2507.16991
-
[29]
N. Franco, A. Manzoni, and P. Zunino. “A deep learning approach to Reduced Order Modelling of parameter dependent partial differential equations”. In:Mathematics of Computation92.340 (2022), pp. 483–524.doi:10.1090/mcom/3781
-
[30]
A practical existence theorem for reduced order models based on convolutional autoencoders
N. R. Franco and S. Brugiapaglia. “A practical existence theorem for reduced order models based on convolutional autoencoders”. en. In:Foundations of Data Science7.1 (2025), pp. 72–98.doi:10.3934/ fods.2024030
2025
-
[31]
Approximation bounds for convolutional neural networks in operator learning
N. R. Franco et al. “Approximation bounds for convolutional neural networks in operator learning”. In:Neural Networks161 (2023), pp. 129–141.doi:10.1016/j.neunet.2023.01.029
-
[32]
N. R. Franco et al. “Deep learning-based surrogate models for parametrized PDEs: Handling geometric variability through graph neural networks”. In:Chaos: An Interdisciplinary Journal of Nonlinear Science33.12 (2023), p. 123121.doi:10.1063/5.0170101
-
[33]
S. Fresca, L. Dede’, and A. Manzoni. “A Comprehensive Deep Learning-Based Approach to Reduced Order Modeling of Nonlinear Time-Dependent Parametrized PDEs”. en. In:Journal of Scientific Com- puting87.2 (2021), p. 61.doi:10.1007/s10915-021-01462-7
-
[34]
LaSDI: Parametric Latent Space Dynamics Identification
W. D. Fries, X. He, and Y. Choi. “LaSDI: Parametric Latent Space Dynamics Identification”. In: Computer Methods in Applied Mechanics and Engineering399 (2022), p. 115436.doi:10.1016/j. cma.2022.115436
arXiv 2022
-
[35]
H. Gao, M. J. Zahr, and J.-X. Wang. “Physics-informed graph neural Galerkin networks: A unified framework for solving PDE-governed forward and inverse problems”. In:Computer Methods in Applied Mechanics and Engineering390 (2022), p. 114502.doi:10.1016/j.cma.2021.114502
arXiv 2022
-
[36]
M. L. Gao, J. P. Williams, and J. N. Kutz.Sparse identification of nonlinear dynamics and Koopman operators with Shallow Recurrent Decoder Networks. arXiv:2501.13329 [cs]. 2025.doi:10 . 48550 / arXiv.2501.13329. [37]GaussianProcessRegressor — scikit-learn 1.7.0 documentation.url:https://scikit- learn.org/ stable/modules/generated/sklearn.gaussian_process....
-
[38]
Approximation rates for neural networks with encodable weights in smoothness spaces
I. Gühring and M. Raslan. “Approximation rates for neural networks with encodable weights in smoothness spaces”. In:Neural Networks134 (2021), pp. 107–130.doi:10.1016/j.neunet.2020.11. 010
-
[39]
W. L. Hamilton.Graph Representation Learning. en. Synthesis Lectures on Artificial Intelligence and MachineLearning.Cham:SpringerInternationalPublishing,2020.doi:10.1007/978-3-031-01588-5
-
[40]
Predicting Physics in Mesh-reduced Space with Temporal Attention
X. Han et al. “Predicting Physics in Mesh-reduced Space with Temporal Attention”. In:Interna- tional Conference on Learning Representations. 2022.url:https : / / openreview . net / forum ? id = XctLdNfCmP. 28 REFERENCES
2022
-
[41]
Thermodynamics-informed graph neural networks
Q. Hernández et al. “Thermodynamics-informed graph neural networks”. In:IEEE Transactions on Artificial Intelligence5.3 (2024). arXiv:2203.01874 [cs], pp. 967–976.doi:10.1109/TAI.2022.3179681
Pith/arXiv arXiv 2024
-
[42]
Non-intrusive reduced order modeling of nonlinear problems using neural networks
J. S. Hesthaven and S. Ubbiali. “Non-intrusive reduced order modeling of nonlinear problems using neural networks”. In:Journal of Computational Physics363 (2018), pp. 55–78.doi:10.1016/j.jcp. 2018.02.037
doi:10.1016/j.jcp 2018
-
[43]
J. S. Hesthaven, G. Rozza, and B. Stamm.Certified Reduced Basis Methods for Parametrized Partial Differential Equations. en. SpringerBriefs in Mathematics. Cham: Springer International Publishing, 2016.doi:10.1007/978-3-319-22470-1
-
[44]
Certified machine learning: A posteriori error estimation for physics- informed neural networks
B. Hillebrecht and B. Unger. “Certified machine learning: A posteriori error estimation for physics- informed neural networks”. In:2022 International Joint Conference on Neural Networks (IJCNN). arXiv:2203.17055 [cs]. 2022, pp. 1–8.doi:10.1109/IJCNN55064.2022.9892569
Pith/arXiv arXiv 2022
-
[45]
Graph neural PDE solvers with conservation and similarity-equivariance
M. Horie and N. Mitsume. “Graph neural PDE solvers with conservation and similarity-equivariance”. In:Proceedings of the 41st International Conference on Machine Learning. Vol. 235. ICML’24. Vienna, Austria: JMLR.org, 2024, pp. 18785–18814.url:https : / / dl . acm . org / doi / 10 . 5555 / 3692070 . 3692825
2024
-
[46]
T. Y. Hsieh and Y. J. Zhang.GALDS: A Graph-Autoencoder-based Latent Dynamics Surrogate model to predict neurite material transport. arXiv:2507.10871 [cs]. 2025.doi:10.48550/arXiv.2507.10871
work page internal anchor Pith review Pith/arXiv arXiv doi:10.48550/arxiv.2507.10871 2025
-
[47]
Learning continuous-time PDEs from sparse data with graph neural networks
V. Iakovlev, M. Heinonen, and H. Lähdesmäki. “Learning continuous-time PDEs from sparse data with graph neural networks”. In:International Conference on Learning Representations. 2021.url: https://openreview.net/forum?id=aUX5Plaq7Oy
2021
-
[48]
M. Khamlich et al. “Optimal transport-based displacement interpolation with data augmentation for reduced order modeling of nonlinear dynamical systems”. In:Journal of Computational Physics531 (2025), p. 113938.doi:10.1016/j.jcp.2025.113938
arXiv 2025
-
[49]
Neural operator: learning maps between function spaces with applications to PDEs
N. Kovachki et al. “Neural operator: learning maps between function spaces with applications to PDEs”. In:J. Mach. Learn. Res.24.1 (2023).url:https://dl.acm.org/doi/10.5555/3648699. 3648788
-
[50]
Li et al.Geometric Operator Learning with Optimal Transport
X. Li et al.Geometric Operator Learning with Optimal Transport. arXiv:2507.20065 [cs]. 2025.doi: 10.48550/arXiv.2507.20065
-
[51]
Geometry-informed neural operator for large-scale 3D PDEs
Z. Li et al. “Geometry-informed neural operator for large-scale 3D PDEs”. In:Proceedings of the 37th International Conference on Neural Information Processing Systems. NIPS ’23. Red Hook, NY, USA: Curran Associates Inc., 2023, pp. 35836–35854.url:https : / / dl . acm . org / doi / abs / 10 . 5555 / 3666122.3667678
arXiv 2023
-
[52]
2020.doi:10.48550/arXiv.2003.03485
Z.Lietal.Neural Operator: Graph Kernel Network for Partial Differential Equations.arXiv:2003.03485 [cs]. 2020.doi:10.48550/arXiv.2003.03485
-
[53]
Enabling Automatic Differentiation with Mollified Graph Neural Operators
R. Y. Lin et al. “Enabling Automatic Differentiation with Mollified Graph Neural Operators”. In: Transactions on Machine Learning Research(2025).url:https : / / openreview . net / forum ? id = CGoR1hFAGr. [54]LinearNDInterpolator — SciPy v1.16.0 Manual.url:https : / / docs . scipy . org / doc / scipy / reference/generated/scipy.interpolate.LinearNDInterpo...
2025
-
[55]
On the limited memory BFGS method for large scale optimization
D. C. Liu and J. Nocedal. “On the limited memory BFGS method for large scale optimization”. en. In:Mathematical Programming45.1-3 (1989), pp. 503–528.doi:10.1007/BF01589116
-
[56]
SEGNO: Generalizing Equivariant Graph Neural Networks with Physical Inductive Biases
Y. Liu et al. “SEGNO: Generalizing Equivariant Graph Neural Networks with Physical Inductive Biases”. In:The Twelfth International Conference on Learning Representations. 2024.url:https: //openreview.net/forum?id=3oTPsORaDH
2024
-
[57]
Hierarchical deep learning of multiscale differential equation time-steppers
Y. Liu, J. N. Kutz, and S. L. Brunton. “Hierarchical deep learning of multiscale differential equation time-steppers”. en. In:Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences380.2229 (2022), p. 20210200.doi:10.1098/rsta.2021.0200
arXiv 2022
-
[58]
Z. Liu et al. “Graph ODEs and Beyond: A Comprehensive Survey on Integrating Differential Equations with Graph Neural Networks”. In:Proceedings of the 31st ACM SIGKDD Conference on Knowledge Discovery and Data Mining V.2. KDD ’25. New York, NY, USA: Association for Computing Machin- ery, 2025, pp. 6118–6128.doi:10.1145/3711896.3736559
arXiv 2025
-
[59]
A. Logg, K.-A. Mardal, G. N. Wells, et al.Automated Solution of Differential Equations by the Finite Element Method. Springer, 2012.doi:10.1007/978-3-642-23099-8
-
[60]
Latent space modeling of parametric and time-dependent PDEs using neural ODEs
A. Longhi, D. Lathouwers, and Z. Perkó. “Latent space modeling of parametric and time-dependent PDEs using neural ODEs”. In:Computer Methods in Applied Mechanics and Engineering448 (2026), p. 118394.doi:10.1016/j.cma.2025.118394. REFERENCES 29
arXiv 2026
-
[61]
Learning Latent Graph Dynamics for Visual Manipulation of De- formable Objects
X. Ma, D. Hsu, and W. S. Lee. “Learning Latent Graph Dynamics for Visual Manipulation of De- formable Objects”. In:2022 International Conference on Robotics and Automation (ICRA). 2022, pp. 8266–8273.doi:10.1109/ICRA46639.2022.9811597
arXiv 2022
-
[62]
Geometric Deep Learning on Graphs and Manifolds Using Mixture Model CNNs
F. Monti et al. “Geometric Deep Learning on Graphs and Manifolds Using Mixture Model CNNs”. In: 2017 IEEE Conference on Computer Vision and Pattern Recognition (CVPR). Honolulu, HI: IEEE, 2017, pp. 5425–5434.doi:10.1109/CVPR.2017.576
-
[63]
O. M. Morrison, F. Pichi, and J. S. Hesthaven. “GFN: A graph feedforward network for resolution- invariant reduced operator learning in multifidelity applications”. In:Computer Methods in Applied Mechanics and Engineering432 (2024), p. 117458.doi:10.1016/j.cma.2024.117458
arXiv 2024
-
[64]
M. Ohlberger and S. Rave.Reduced Basis Methods: Success, Limitations and Future Challenges. 2016. doi:10.48550/arXiv.1511.02021. arXiv:1511.02021 [math]
-
[65]
Learning two-phase microstructure evolution using neural operators and autoen- coder architectures
V. Oommen et al. “Learning two-phase microstructure evolution using neural operators and autoen- coder architectures”. en. In:npj Computational Materials8.1 (2022), p. 190.doi:10.1038/s41524- 022-00876-7
doi:10.1038/s41524- 2022
-
[66]
Learning Mesh-Based Simulation with Graph Networks
T. Pfaff et al. “Learning Mesh-Based Simulation with Graph Networks”. In:International Conference on Learning Representations. 2021.url:https://openreview.net/forum?id=roNqYL0_XP
2021
-
[67]
A graph convolutional autoencoder approach to model order reduction for parametrized PDEs
F. Pichi, B. Moya, and J. S. Hesthaven. “A graph convolutional autoencoder approach to model order reduction for parametrized PDEs”. In:Journal of Computational Physics501 (2024), p. 112762.doi: 10.1016/j.jcp.2024.112762
arXiv 2024
-
[68]
Deflation-Based Certified Greedy Algorithm and Adaptivity for Bifur- cating Nonlinear PDEs
F. Pichi and M. Strazzullo. “Deflation-Based Certified Greedy Algorithm and Adaptivity for Bifur- cating Nonlinear PDEs”. In:Communications in Nonlinear Science and Numerical Simulation149 (2025), p. 108941.doi:10.1016/j.cnsns.2025.108941
arXiv 2025
-
[69]
An artificial neural network approach to bifurcating phenomena in computational fluid dynamics
F. Pichi et al. “An artificial neural network approach to bifurcating phenomena in computational fluid dynamics”. In:Computers & Fluids254 (2023), p. 105813.doi:10.1016/j.compfluid.2023.105813
arXiv 2023
-
[70]
F.Pichietal.“DrivingbifurcatingparametrizednonlinearPDEsbyoptimalcontrolstrategies:applica- tion to Navier–Stokes equations with model order reduction”. en. In:ESAIM: Mathematical Modelling and Numerical Analysis56.4 (2022), pp. 1361–1400.doi:10.1051/m2an/2022044
arXiv 2022
-
[71]
Poli et al.Graph Neural Ordinary Differential Equations
M. Poli et al.Graph Neural Ordinary Differential Equations. arXiv:1911.07532 [cs]. 2021.doi:10. 48550/arXiv.1911.07532
-
[72]
S. J. Prince.Understanding Deep Learning. MIT Press, 2023.url:http://udlbook.com
2023
-
[73]
A. Quaini, R. Glowinski, and S. Čanić. “Symmetry breaking and preliminary results about a Hopf bifurcation for incompressible viscous flow in an expansion channel”. In:International Journal of Computational Fluid Dynamics(2016).doi:https://doi.org/10.1080/10618562.2016.1144877
arXiv 2016
-
[74]
Quarteroni.Numerical Models for Differential Problems
A. Quarteroni.Numerical Models for Differential Problems. en. Vol. 16. MS&A. Cham: Springer In- ternational Publishing, 2017.doi:10.1007/978-3-319-49316-9
-
[75]
A. Quarteroni, P. Gervasio, and F. Regazzoni. “Combining physics-based and data-driven models: advancing the frontiers of research with scientific machine learning”. In:Mathematical Models and Methods in Applied Sciences35.04 (2025), pp. 905–1071.doi:10.1142/S0218202525500125
-
[76]
A. Quarteroni, A. Manzoni, and F. Negri.Reduced Basis Methods for Partial Differential Equations. Vol. 92. UNITEXT. Cham: Springer International Publishing, 2016.doi:10.1007/978-3-319-15431- 2
-
[77]
New York, NY: Springer, 2007.doi:10.1007/b98885
A.Quarteroni,R.Sacco,andF.Saleri.Numerical Mathematics.Vol.37.TextsinAppliedMathematics. New York, NY: Springer, 2007.doi:10.1007/b98885
doi:10.1007/b98885 2007
-
[78]
C. E. Rasmussen and C. K. I. Williams.Gaussian Processes for Machine Learning. en. The MIT Press, 2005.doi:10.7551/mitpress/3206.001.0001
-
[79]
Learning the intrinsic dynamics of spatio-temporal processes through Latent Dynamics Networks
F. Regazzoni et al. “Learning the intrinsic dynamics of spatio-temporal processes through Latent Dynamics Networks”. en. In:Nature Communications15.1 (2024), p. 1834.doi:10.1038/s41467- 024-45323-x
doi:10.1038/s41467- 2024
-
[80]
Rozza et al.Real Time Reduced Order Computational Mechanics: Parametric PDEs Worked Out Problems
G. Rozza et al.Real Time Reduced Order Computational Mechanics: Parametric PDEs Worked Out Problems. SISSA Springer Series. Springer Cham, 2024.doi:https://doi.org/10.1007/978-3-031- 49892-3
-
[81]
Seydel.Practical Bifurcation and Stability Analysis
R. Seydel.Practical Bifurcation and Stability Analysis. en. Vol. 5. Interdisciplinary Applied Mathe- matics. New York, NY: Springer, 2010.doi:10.1007/978-1-4419-1740-9
-
[82]
GraphVAE: Towards Generation of Small Graphs Using Varia- tional Autoencoders
M. Simonovsky and N. Komodakis. “GraphVAE: Towards Generation of Small Graphs Using Varia- tional Autoencoders”. en. In:Artificial Neural Networks and Machine Learning – ICANN 2018. Ed. by V. Kůrková et al. Cham: Springer International Publishing, 2018, pp. 412–422.doi:10.1007/978-3- 030-01418-6_41. 30 REFERENCES
doi:10.1007/978-3- 2018
This paper was first reviewed by deepseek-v4-flash on August 3, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.