REVIEW 2 major objections 4 minor 58 references
A Sketch-and-Project Analysis of Subsampled Natural Gradient Algorithms
T0 review · 2 major / 4 minor · reviewed 2026-08-05 · deepseek-v4-flash
Pith's one-line read Subsampled natural gradient descent is, on linear least-squares problems, exactly regularized Kaczmarz; its momentum variant SPRING is accelerated Kaczmarz — yielding the first fast convergence rates for both.
desk verdict The LLS equivalences and first SPRING guarantee are solid; the LLQ rate is new but rests on an alignment assumption the authors admit is unrealistic, and the stress-test's alleged λ=0 slip is wrong on reading. 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 random regularized projector P(S) = J_S^+ J_S, which maps vectors onto the row space of the sampled Jacobian rows. Bundling all stochasticity into P(S) — instead of separating the random gradient from the random preconditioner as earlier analyses did — turns the SNGD update into (I − ηP(S)) acting on the error, a contraction in expectation since P(S)² ⪯ P(S). This lets the paper import two ready-made analyses: regularized Kaczmarz for SNGD, and its accelerated version (ARK) for SPRING. For the LLQ extension, the new identity J_S^+ H J = P(S) J^+ H J, valid when range(HJ) ⊆ range(J), expresses the update as a random projector applied to a deterministic natural-gradie
What would settle it
Compute the spectrum of M = P J^+ H J for a realistic model Jacobian at a chosen regularization λ: if min Re(eig M) < 0, Proposition 3 predicts SNGD diverges for every step size, a prediction testable by running SNGD from a random initial point. Independently, test whether the expected projector P commutes with J^T J on a real neural-network Jacobian from a PINN or wavefunction model; if it does not, Theorem 4's conditions fail and its predicted rate (1 − κ⁻¹(H̃)αγ)^t should be checked empirically to see whether fast convergence persists outside the assumption.
Extended reading notes
Core claim
On consistent linear least-squares problems (Jθ* = b), SNGD is identical to regularized Kaczmarz iteration, and its momentum variant SPRING is identical to the accelerated regularized Kaczmarz (ARK) method. Using the same mini-batch for gradient and preconditioner bundles all randomness into one regularized projector P(S) = J_S^+ J_S, so the expected error shrinks as (1 − α)^t for SNGD and O((1 − √(α/β))^t) for SPRING — a square-root speed-up. These give the first fast rates for SNGD, the first convergence guarantee for SPRING, and the first proof SPRING accelerates SNGD. SNGD beats SGD by turning Jacobian spectral decay into acceleration. For the general LLQ loss, a similar rate holds only
Load-bearing premise
The linear least-squares results assume the system is consistent (an exact solution exists), and the extension to general quadratic losses additionally assumes the subsampled projector and the model's Gram matrix can be diagonalized using the same eigenvectors — a condition the paper itself says is not expected to hold in practice.
Editorial extensions
If this is right
- First fast convergence rates for SNGD on linear least-squares: expected squared error decays as (1 − α)^t for any batch size, not only asymptotically large ones.
- First convergence guarantee for SPRING in any setting, plus the first proof that SPRING accelerates SNGD, by up to a square-root improvement in the rate.
- Explains the empirical advantage of SNGD over SGD: the rate improves with the spectral decay exponent β of the Jacobian (k^β versus k), which matters for problems like PINNs whose Jacobians have rapidly decaying singular values.
- Explains why using a single mini-batch for both the stochastic gradient and the stochastic preconditioner is beneficial, and why SPRING's gains are largest for small batch sizes.
- For the LLQ losses that model energy-based wavefunction training, SNGD can diverge for every step size if the regularization λ is too small; a sufficiently large λ guarantees convergence, giving a new reason why λ > 0 is essential in practice.
Reading between the lines
- Editorial inference: because the SNGD–Kaczmarz identity is algebraic, the transfer is not limited to convergence rates — improvements from the Kaczmarz literature, such as non-uniform row sampling or tail averaging, could be ported into SNGD/SPRING implementations; the paper itself only analyzes uniform sampling.
- Editorial inference: the LLQ theorem's eigen-alignment condition is the point where theory and practice could diverge; checking whether P and J^T J share an eigenbasis on a real network Jacobian from a PINN or wavefunction model would reveal how wide that gap is. The paper's numerical experiments use Gaussian Jacobians, where the alignment holds only asymptotically, so they do not probe it.
- Editorial inference: the central coupling insight — one mini-batch shared by gradient and curvature estimate collapsing into a single random projector — should carry over to subsampled Newton and Gauss-Newton methods, where the identical two-estimator coupling problem arises and a parallel contraction argument may be constructible.
- Editorial inference: Proposition 3 yields a practical diagnostic: compute ξ(λ) = min Re eig(P J^+ H J) on a small surrogate model; its sign predicts guaranteed divergence (negative) versus guaranteed convergence (positive) for SNGD, giving a principled rule for choosing λ in energy-based training.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper analyzes subsampled natural gradient descent (SNGD) and its momentum variant SPRING on two quadratic model problems: linear least-squares (LLS) and linear least-quadratics (LLQ). For consistent LLS, it proves that SNGD with unit step size is exactly the regularized Kaczmarz method of Goldshlager et al. (2025) and that SPRING is equivalent to the accelerated regularized Kaczmarz (ARK) method of Dereziński et al. (2025), leading to the stated geometric convergence rates. For LLQ, under a strong consistency condition plus an added assumption that the expected regularized projector commutes with JᵀJ, the paper proves a convergence rate for SNGD, and it shows that without the commutation assumption SNGD can diverge for all step sizes when the regularization is small. SPRING for LLQ is left as a conjecture with supporting numerics. The paper frames these results as the first convergence guarantees for SNGD and SPRING and the first rigorous explanation of SPRING's acceleration.
Significance. If the LLS results are correct, they provide a clean and useful bridge between subsampled natural gradient methods and randomized linear algebra: the equivalence proofs are explicit, the rates follow from established Kaczmarz theory, and the single-batch coupling is handled naturally rather than by decoupling gradient and preconditioner samples. The SPRING-ARK equivalence is a genuine new structural insight and gives the first convergence statement for SPRING. The LLQ analysis is more conditional: the main theorem requires an eigenbasis alignment assumption that the authors themselves state is not expected to hold in practice, and Proposition 3 shows that without such an assumption divergence is possible. Nevertheless, the paper is transparent about this limitation and provides concrete special cases (DPP sampling and Gaussian limits) where the alignment holds. Overall, the LLS contribution is solid, while the LLQ contribution is a plausible starting point rather than a general explanation.
major comments (2)
- [Section 4.2, Theorem 4] The claimed 'first explanation for SNGD outside least-squares' rests on the assumption that the expected regularized projector P shares an eigenbasis with JᵀJ. The paper explicitly says this assumption 'is not expected to hold in practice,' and Proposition 3 shows that when it fails, SNGD can diverge for every step size at small λ. Thus Theorem 4 establishes convergence only under an idealized alignment condition (or in the DPP/Gaussian special cases of Proposition 9), not for the motivating NNW/PINN settings. The contribution should be reframed accordingly, or the authors should provide evidence or a relaxed condition under which approximate alignment holds in the motivating applications.
- [Theorem 1, eq. (16)] The SPRING rate is stated as holding 'for appropriate choices of η and μ,' but the paper never specifies admissible values or ranges for these hyperparameters, nor the corresponding constraints on the ARK step-size transformation \ ilde η = 1-(1-η)/μ given in Appendix A. Since one of the main contributions is the first convergence guarantee for SPRING, the guarantee is not actionable without explicit hyperparameter conditions. Please include the concrete ARK assumptions (e.g., from Dereziński et al. 2025) under which eq. (16) holds, or state a fully self-contained theorem.
minor comments (4)
- [Notation, Sections 2-4] The symbol J⁺ is used for both the regularized pseudoinverse J⁺(λ) and the unregularized pseudoinverse; for example, eq. (18) introduces J⁺ without a definition. Please define J⁺ = (JᵀJ)⁻¹Jᵀ explicitly.
- [Appendix B, proof of Theorem 4] The proof uses Q for both the deterministic matrix in Theorem 4 and the random matrix P(S)(JᵀJ)⁻¹. This makes equations (38)-(40) hard to read. Use notation such as \bar Q for the deterministic expectation and Q_S for the random quantity. Also note: the apparent replacement of a regularized pseudoinverse by an unregularized one in eqs. (38)-(39) is not an error, because J⁺ there is the full pseudoinverse from eq. (18) and the regularization enters only through P(S); clarifying this would prevent confusion.
- [Corollary 5] The asymptotic statements contain typographical issues: 'α = Ω(kβκ−2_dem(J)' is missing a closing parenthesis, and 'γ = Ω(κ2(J))' should presumably be 'γ = Ω(κ⁻²(J))' to be consistent with the rate in eq. (21). Please correct.
- [Appendix A, ARK transformation] After deriving \tilde η = 1-(1-η)/μ, the paper does not discuss the admissible sign or magnitude of \tilde η. Since ARK requires certain step-size constraints, state the conditions on η and μ that make \tilde η admissible.
Circularity Check
No significant circularity: the SNGD/SPRING equivalences are proven algebraically and the imported rates come from independent, non-fitted prior analyses.
full rationale
The derivation chain is non-circular. For LLS, the paper rewrites the SNGD update (eq. 11) under consistency Jθ*=b as eq. (13)-(14), which is exactly the regularized Kaczmarz update; the expectation bound (15) is then re-derived in Appendix A using P(S)^2 ⪯ P(S), not assumed from the theorem being proved. The SPRING/ARK equivalence is verified by an explicit induction in Appendix A, and the SPRING rate (16) is cited from external ARK analyses (Dereziński et al. 2024, 2025), not from any fit or from a conclusion built into the assumptions. The LLQ analysis is new: Assumption 2 permits the exact rewrite in eq. (18), and Theorem 4's proof is self-contained given the stated commutation assumption. The Appendix B proof's use of the unregularized pseudoinverse of the full J in the deterministic NGD direction is not a silent λ=0 restriction: λ enters through P(S), so eqs. (38)-(39) are exact for λ>0. The paper's own admission that the eigenbasis assumption 'is not expected to hold in practice' is an honest scope limitation rather than a circular move, and Proposition 3 exposes a real fragility at small λ. No fitted parameter is relabeled as a prediction, and the same-author citation (Goldshlager et al. 2025) transfers an independently statable regularized-Kaczmarz theorem after an exact equivalence; it does not make the central claim equivalent to its own input by construction.
Assumptions & free parameters
assumptions (6)
- domain assumption Model is linear, v_theta = J theta, with Hilbert space R^m and J of full column rank (Problem 1).
- domain assumption Consistency for LLS: J theta* = b, meaning the linear system is consistent.
- ad hoc to paper Assumption 2 strong consistency: J theta* = argmin_v L(v) and range(HJ) subset of range(J).
- domain assumption Uniform sampling of mini-batches S without replacement.
- ad hoc to paper P shares an eigenbasis with J^T J (for Theorem 4).
- standard math External convergence analyses of regularized Kaczmarz (Goldshlager et al. 2025) and accelerated regularized Kaczmarz (Dereziński et al. 2024, 2025) are correct.
Cite this review
Pith. "Pith review of A Sketch-and-Project Analysis of Subsampled Natural Gradient Algorithms." pith.science (2026). https://pith.science/paper/EWGTRBZA
@misc{pith2026250821022,
author = {Pith},
title = {Pith review of: A Sketch-and-Project Analysis of Subsampled Natural Gradient Algorithms},
year = {2026},
howpublished = {\url{https://pith.science/paper/EWGTRBZA}},
note = {Machine review of arXiv:2508.21022}
}
read the original abstract
Subsampled natural gradient descent (SNG) has been used to enable high-precision scientific machine learning, but standard analyses based on stochastic preconditioning fail to provide insight into realistic small-sample settings. We overcome this limitation by instead analyzing SNG as a sketch-and-project method. Motivated by this lens, we discard the usual theoretical proxy which decouples gradients and preconditioners using two independent mini-batches, and we replace it with a new proxy based on squared volume sampling. Under this new proxy we show that the expectation of the SNG direction becomes equal to a preconditioned gradient descent step even in the presence of coupling, leading to (i) global convergence guarantees when using a single mini-batch of any size, and (ii) an explicit characterization of the convergence rate in terms of quantities related to the sketch-and-project structure. These findings in turn yield new insights into small-sample settings, for example by suggesting that the advantage of SNG over SGD is that it can more effectively exploit spectral decay in the model Jacobian. We also extend these ideas to explain a popular structured momentum scheme for SNG, known as SPRING, by showing that it arises naturally from accelerated sketch-and-project methods.
Figures
Reference graph
Works this paper leans on
-
[1]
Convergence of variational M onte C arlo simulation and scale-invariant pre-training
Nilin Abrahamsen, Zhiyan Ding, Gil Goldshlager, and Lin Lin. Convergence of variational M onte C arlo simulation and scale-invariant pre-training. Journal of Computational Physics, 513: 0 113140, 2024
work page 2024
-
[2]
Natural gradient works efficiently in learning
Shun-Ichi Amari. Natural gradient works efficiently in learning. Neural computation, 10 0 (2): 0 251--276, 1998
work page 1998
-
[3]
Functional neural wavefunction optimization
Victor Armegioiu, Juan Carrasquilla, Siddhartha Mishra, Johannes M \"u ller, Jannes Nys, Marius Zeinhofer, and Hang Zhang. Functional neural wavefunction optimization. arXiv preprint arXiv:2507.10835, 2025
arXiv 2025
-
[4]
Stochastic (approximate) proximal point methods: Convergence, optimality, and adaptivity
Hilal Asi and John C Duchi. Stochastic (approximate) proximal point methods: Convergence, optimality, and adaptivity. SIAM Journal on Optimization, 29 0 (3): 0 2257--2290, 2019
work page 2019
-
[5]
Incremental proximal methods for large scale convex optimization
Dimitri P Bertsekas. Incremental proximal methods for large scale convex optimization. Mathematical programming, 129 0 (2): 0 163--195, 2011
2011
-
[6]
Exact and inexact subsampled N ewton methods for optimization
Raghu Bollapragada, Richard H Byrd, and Jorge Nocedal. Exact and inexact subsampled N ewton methods for optimization. IMA Journal of Numerical Analysis, 39 0 (2): 0 545--578, 2019
work page 2019
-
[7]
Optimization methods for large-scale machine learning
L \'e on Bottou, Frank E Curtis, and Jorge Nocedal. Optimization methods for large-scale machine learning. SIAM review, 60 0 (2): 0 223--311, 2018
2018
-
[8]
Marin Bukov, Markus Schmitt, and Maxime Dupont. Learning the ground state of a non-stoquastic quantum H amiltonian in a rugged neural network landscape. SciPost Physics, 10 0 (6): 0 147, 2021
work page 2021
Show all 58 references
-
[9]
Gram- G auss- N ewton method: Learning overparameterized neural networks for regression problems
Tianle Cai, Ruiqi Gao, Jikai Hou, Siyu Chen, Dong Wang, Di He, Zhihua Zhang, and Liwei Wang. Gram- G auss- N ewton method: Learning overparameterized neural networks for regression problems. arXiv preprint arXiv:1905.11675, 2019
1905 arXiv
-
[10]
Solving the quantum many-body problem with artificial neural networks
Giuseppe Carleo and Matthias Troyer. Solving the quantum many-body problem with artificial neural networks. Science, 355 0 (6325): 0 602--606, 2017
2017
-
[11]
Empowering deep neural quantum states through efficient optimization
Ao Chen and Markus Heyl. Empowering deep neural quantum states through efficient optimization. Nature Physics, 20 0 (9): 0 1476--1481, 2024
2024
-
[12]
Kronecker-factored approximate curvature for physics-informed neural networks
Felix Dangel, Johannes M \"u ller, and Marius Zeinhofer. Kronecker-factored approximate curvature for physics-informed neural networks. Advances in Neural Information Processing Systems, 37: 0 34582--34636, 2024
2024
-
[13]
Stochastic model-based minimization of weakly convex functions
Damek Davis and Dmitriy Drusvyatskiy. Stochastic model-based minimization of weakly convex functions. SIAM Journal on Optimization, 29 0 (1): 0 207--239, 2019
2019
-
[14]
Sharp analysis of sketch-and-project methods via a connection to randomized singular value decomposition
Micha Derezi \'n ski and Elizaveta Rebrova. Sharp analysis of sketch-and-project methods via a connection to randomized singular value decomposition. SIAM Journal on Mathematics of Data Science, 6 0 (1): 0 127--153, 2024
2024
-
[15]
Fine-grained analysis and faster algorithms for iteratively solving linear systems
Micha Derezi \'n ski, Daniel LeJeune, Deanna Needell, and Elizaveta Rebrova. Fine-grained analysis and faster algorithms for iteratively solving linear systems. arXiv preprint arXiv:2405.05818, 2024
2024 arXiv
-
[16]
Randomized K aczmarz methods with beyond- K rylov convergence
Micha Derezi \'n ski, Deanna Needell, Elizaveta Rebrova, and Jiaming Yang. Randomized K aczmarz methods with beyond- K rylov convergence. arXiv preprint arXiv:2501.11673, 2025
2025 arXiv
-
[17]
Randomized Kaczmarz with tail averaging
Ethan N Epperly, Gil Goldshlager, and Robert J Webber. Randomized Kaczmarz with tail averaging. arXiv preprint arXiv:2411.19877, 2024
2024 arXiv
-
[18]
Handbook of convergence theorems for (stochastic) gradient methods
Guillaume Garrigos and Robert M Gower. Handbook of convergence theorems for (stochastic) gradient methods. arXiv preprint arXiv:2301.11235, 2023
2023 arXiv
-
[19]
A K aczmarz-inspired approach to accelerate the optimization of neural network wavefunctions
Gil Goldshlager, Nilin Abrahamsen, and Lin Lin. A K aczmarz-inspired approach to accelerate the optimization of neural network wavefunctions. Journal of Computational Physics, 516: 0 113351, 2024
2024
-
[20]
Worth their weight: Randomized and regularized block Kaczmarz algorithms without preprocessing
Gil Goldshlager, Jiang Hu, and Lin Lin. Worth their weight: Randomized and regularized block Kaczmarz algorithms without preprocessing. arXiv preprint arXiv:2502.00882, 2025
2025
-
[21]
Accelerated stochastic matrix inversion: general theory and speeding up BFGS rules for faster second-order optimization
Robert Gower, Filip Hanzely, Peter Richt \'a rik, and Sebastian U Stich. Accelerated stochastic matrix inversion: general theory and speeding up BFGS rules for faster second-order optimization. Advances in Neural Information Processing Systems, 31, 2018
2018
-
[22]
Randomized iterative methods for linear systems
Robert M Gower and Peter Richt \'a rik. Randomized iterative methods for linear systems. SIAM Journal on Matrix Analysis and Applications, 36 0 (4): 0 1660--1690, 2015
2015
-
[23]
Solving the H ubbard model with neural quantum states
Yuntian Gu, Wenrui Li, Heng Lin, Bo Zhan, Ruichen Li, Yifei Huang, Di He, Yantao Wu, Tao Xiang, Mingpu Qin, et al. Solving the H ubbard model with neural quantum states. arXiv preprint arXiv:2507.02644, 2025
2025 arXiv
-
[24]
Improving energy natural gradient descent through woodbury, momentum, and randomization
Andr \'e s Guzm \'a n-Cordero, Felix Dangel, Gil Goldshlager, and Marius Zeinhofer. Improving energy natural gradient descent through woodbury, momentum, and randomization. arXiv preprint arXiv:2505.12149, 2025
2025
-
[25]
a tzle, and Frank No \'e . Deep-neural-network solution of the electronic S chr \
Jan Hermann, Zeno Sch \"a tzle, and Frank No \'e . Deep-neural-network solution of the electronic S chr \"o dinger equation. Nature Chemistry, 12 0 (10): 0 891--897, 2020
2020
-
[26]
Parallelizing stochastic gradient descent for least squares regression: mini-batching, averaging, and model misspecification
Prateek Jain, Sham M Kakade, Rahul Kidambi, Praneeth Netrapalli, and Aaron Sidford. Parallelizing stochastic gradient descent for least squares regression: mini-batching, averaging, and model misspecification. Journal of machine learning research, 18 0 (223): 0 1--42, 2018
2018
-
[27]
Neural scaling laws surpass chemical accuracy for the many-electron S chr \"o dinger equation
Du Jiang, Xuelan Wen, Yixiao Chen, Ruichen Li, Weizhong Fu, Hung Q Pham, Ji Chen, Di He, William A Goddard III, Liwei Wang, et al. Neural scaling laws surpass chemical accuracy for the many-electron S chr \"o dinger equation. arXiv preprint arXiv:2508.02570, 2025
2025 arXiv
-
[28]
Characterizing possible failure modes in physics-informed neural networks
Aditi Krishnapriyan, Amir Gholami, Shandian Zhe, Robert Kirby, and Michael W Mahoney. Characterizing possible failure modes in physics-informed neural networks. Advances in neural information processing systems, 34: 0 26548--26560, 2021
2021
-
[29]
Accelerated natural gradient method for parametric manifold optimization
Chenyi Li, Shuchen Zhu, Zhonglin Xie, and Zaiwen Wen. Accelerated natural gradient method for parametric manifold optimization. arXiv preprint arXiv:2504.05753, 2025
2025 arXiv
-
[30]
Convergence analysis of stochastic gradient descent with MCMC estimators
Tianyou Li, Fan Chen, Huajie Chen, and Zaiwen Wen. Convergence analysis of stochastic gradient descent with MCMC estimators. arXiv preprint arXiv:2303.10599, 2023
2023 arXiv
-
[31]
Ab initio calculation of real solids via neural network ansatz
Xiang Li, Zhe Li, and Ji Chen. Ab initio calculation of real solids via neural network ansatz. Nature Communications, 13 0 (1): 0 7895, 2022
2022
-
[32]
The power of interpolation: Understanding the effectiveness of sgd in modern over-parametrized learning
Siyuan Ma, Raef Bassily, and Mikhail Belkin. The power of interpolation: Understanding the effectiveness of sgd in modern over-parametrized learning. In International Conference on Machine Learning, pp.\ 3325--3334. PMLR, 2018
2018
-
[33]
New insights and perspectives on the natural gradient method
James Martens. New insights and perspectives on the natural gradient method. Journal of Machine Learning Research, 21 0 (146): 0 1--76, 2020
2020
-
[34]
Fast and furious convergence: Stochastic second order methods under interpolation
Si Yi Meng, Sharan Vaswani, Issam Hadj Laradji, Mark Schmidt, and Simon Lacoste-Julien. Fast and furious convergence: Stochastic second order methods under interpolation. In International Conference on Artificial Intelligence and Statistics, pp.\ 1375--1386. PMLR, 2020
2020
-
[35]
Achieving high accuracy with PINN s via energy natural gradient descent
Johannes M \"u ller and Marius Zeinhofer. Achieving high accuracy with PINN s via energy natural gradient descent. In International Conference on Machine Learning, pp.\ 25471--25485. PMLR, 2023
2023
-
[36]
Paved with good intentions: analysis of a randomized block K aczmarz method
Deanna Needell and Joel A Tropp. Paved with good intentions: analysis of a randomized block K aczmarz method. Linear Algebra and its Applications, 441: 0 199--221, 2014
2014
-
[37]
Stochastic gradient descent, weighted sampling, and the randomized K aczmarz algorithm
Deanna Needell, Nathan Srebro, and Rachel Ward. Stochastic gradient descent, weighted sampling, and the randomized K aczmarz algorithm. Advances in neural information processing systems, 27, 2014
2014
-
[38]
Geometry of learning neural quantum states
Chae-Yeun Park and Michael J Kastoryano. Geometry of learning neural quantum states. Physical Review Research, 2 0 (2): 0 023232, 2020
2020
-
[39]
Ab initio solution of the many-electron S chr \"o dinger equation with deep neural networks
David Pfau, James S Spencer, Alexander GDG Matthews, and W Matthew C Foulkes. Ab initio solution of the many-electron S chr \"o dinger equation with deep neural networks. Physical review research, 2 0 (3): 0 033429, 2020
2020
-
[40]
Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equations
Maziar Raissi, Paris Perdikaris, and George E Karniadakis. Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equations. Journal of Computational physics, 378: 0 686--707, 2019
2019
-
[41]
Challenges in training PINN s: A loss landscape perspective
Pratik Rathore, Weimu Lei, Zachary Frangella, Lu Lu, and Madeleine Udell. Challenges in training PINN s: A loss landscape perspective. arXiv preprint arXiv:2402.01868, 2024
2024 arXiv
-
[42]
Efficient subsampled G auss- N ewton and natural gradient methods for training neural networks
Yi Ren and Donald Goldfarb. Efficient subsampled G auss- N ewton and natural gradient methods for training neural networks. arXiv preprint arXiv:1906.02353, 2019
1906 arXiv
-
[43]
A simple linear algebra identity to optimize large-scale neural network quantum states
Riccardo Rende, Luciano Loris Viteritti, Lorenzo Bardone, Federico Becca, and Sebastian Goldt. A simple linear algebra identity to optimize large-scale neural network quantum states. Communications Physics, 7 0 (1): 0 260, 2024
2024
-
[44]
Stochastic reformulations of linear systems: algorithms and convergence theory
Peter Richt \'a rik and Martin Tak \'a c. Stochastic reformulations of linear systems: algorithms and convergence theory. SIAM Journal on Matrix Analysis and Applications, 41 0 (2): 0 487--524, 2020
2020
-
[45]
Sub-sampled newton methods i: globally convergent algorithms
Farbod Roosta-Khorasani and Michael W Mahoney. Sub-sampled newton methods i: globally convergent algorithms. arXiv preprint arXiv:1601.04737, 2016 a
2016 arXiv
-
[46]
Sub-sampled newton methods ii: Local convergence rates
Farbod Roosta-Khorasani and Michael W Mahoney. Sub-sampled newton methods ii: Local convergence rates. arXiv preprint arXiv:1601.04738, 2016 b
2016 arXiv
-
[47]
Accurate ab-initio neural-network solutions to large-scale electronic structure problems
Michael Scherbela, Nicholas Gao, Philipp Grohs, and Stephan G \"u nnemann. Accurate ab-initio neural-network solutions to large-scale electronic structure problems. arXiv preprint arXiv:2504.06087, 2025
2025 arXiv
-
[48]
Unified variational approach description of ground-state phases of the two-dimensional electron gas
Conor Smith, Yixiao Chen, Ryan Levy, Yubo Yang, Miguel A Morales, and Shiwei Zhang. Unified variational approach description of ground-state phases of the two-dimensional electron gas. Physical Review Letters, 133 0 (26): 0 266504, 2024
2024
-
[49]
Generalized L anczos algorithm for variational quantum M onte C arlo
Sandro Sorella. Generalized L anczos algorithm for variational quantum M onte C arlo. Physical Review B, 64 0 (2): 0 024512, 2001
2001
-
[50]
When and why PINN s fail to train: A neural tangent kernel perspective
Sifan Wang, Xinling Yu, and Paris Perdikaris. When and why PINN s fail to train: A neural tangent kernel perspective. Journal of Computational Physics, 449: 0 110768, 2022
2022
-
[51]
Rayleigh- G auss- N ewton optimization with enhanced sampling for variational M onte C arlo
Robert J Webber and Michael Lindsey. Rayleigh- G auss- N ewton optimization with enhanced sampling for variational M onte C arlo. Physical Review Research, 4 0 (3): 0 033099, 2022
2022
-
[52]
Convergence analysis of an adaptively regularized natural gradient method
Jiayuan Wu, Jiang Hu, Hongchao Zhang, and Zaiwen Wen. Convergence analysis of an adaptively regularized natural gradient method. IEEE Transactions on Signal Processing, 72: 0 2527--2542, 2024
2024
-
[53]
Convergence analysis of natural gradient descent for over-parameterized physics-informed neural networks
Xianliang Xu, Ting Du, Wang Kong, Bin Shan, Ye Li, and Zhongyi Huang. Convergence analysis of natural gradient descent for over-parameterized physics-informed neural networks. arXiv preprint arXiv:2408.00573, 2024
2024 arXiv
-
[54]
Sketchy empirical natural gradient methods for deep learning
Minghan Yang, Dong Xu, Zaiwen Wen, Mengyun Chen, and Pengxiang Xu. Sketchy empirical natural gradient methods for deep learning. arXiv preprint arXiv:2006.05924, 2020
2006 arXiv
-
[55]
Fast convergence of natural gradient descent for over-parameterized neural networks
Guodong Zhang, James Martens, and Roger B Grosse. Fast convergence of natural gradient descent for over-parameterized neural networks. Advances in Neural Information Processing Systems, 32, 2019
2019
-
[56]
@esa (Ref
\@ifxundefined[1] #1\@undefined \@firstoftwo \@secondoftwo \@ifnum[1] #1 \@firstoftwo \@secondoftwo \@ifx[1] #1 \@firstoftwo \@secondoftwo [2] @ #1 \@temptokena #2 #1 @ \@temptokena \@ifclassloaded agu2001 natbib The agu2001 class already includes natbib coding, so you should ...
-
[57]
\@lbibitem[] @bibitem@first@sw\@secondoftwo \@lbibitem[#1]#2 \@extra@b@citeb \@ifundefined br@#2\@extra@b@citeb \@namedef br@#2 \@nameuse br@#2\@extra@b@citeb \@ifundefined b@#2\@extra@b@citeb @num @parse #2 @tmp #1 NAT@b@open@#2 NAT@b@shut@#2 \@ifnum @merge>\@ne @bibitem@firs...
-
[58]
@open @close @open @close and [1] URL: #1 \@ifundefined chapter * \@mkboth \@ifxundefined @sectionbib * \@mkboth * \@mkboth\@gobbletwo \@ifclassloaded amsart * \@ifclassloaded amsbook * \@ifxundefined @heading @heading NAT@ctr thebibliography [1] @ \@biblabel @NAT@ctr \@bibset...
Reviewed August 5, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.