REVIEW 3 major objections 5 minor 68 references
Learning by solving differential equations
T0 review · 3 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Higher-order Runge-Kutta optimizers for deep learning become practical when momentum is applied to their gradient estimates, closing the large-batch generalization gap and beating Adam on MNIST and Fashion-MNIST.
desk verdict A candid, useful empirical study of RK4 for deep learning with honest limitations, but its central 'better than Adam' claim is under-supported by unmatched tuning and missing error bars. 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 RK gradient estimate $g^*(\theta, h) = \sum_i b_i g(\theta_i)$, where the stage points $\theta_i = \theta - h \sum_j a_{ij} g(\theta_j)$ probe the gradient field nearby and the coefficients $a_{ij}, b_i$ are chosen so the update matches the Taylor expansion of the true gradient-flow solution to a prescribed order. The paper attaches three mechanisms to this object: a modified AdaGrad preconditioner $A'_n = (1 + \operatorname{diag}\, G_n)^{-1/2}$, a rescaled adaptive step size $h_{DALR}(\theta) = c / (1 + (c/2)(\|H g\| / \|g\|)^p)$, and momentum applied to the RK gradient itself. The momentum mechanism is the load-bearing one for the paper's strongest claim, since it fully closes the large-batch generalization gap that rules out vanilla RK4.
What would settle it
Run RK4-with-momentum and Adam with the same tuning budget on a large-scale workload such as an ImageNet-scale vision transformer or a large transformer language model, using large batches; if RK4-with-momentum fails to match Adam's test accuracy, or its per-step wall-clock cost becomes prohibitive, the paper's practical claim that these RK modifications benefit deep learning collapses. A cheaper check is to reproduce the full-batch MNIST result with the paper's reported hyperparameters and verify that the accuracy advantage over Adam persists across more than five seeds.
Extended reading notes
Core claim
The central discovery is that the value of higher-order ODE solvers for deep learning lies not in using them as-is but in grafting modern optimizer machinery onto their gradient estimates. A vanilla RK4 step evaluates the gradient at four nearby points and combines them, yielding an update that follows the exact gradient-flow solution to $\mathcal{O}(h^5)$ per step, but this precision is a double-edged sword: it stabilizes training while stripping away the regularizing effect of discretization error, producing the large-batch generalization gap. The paper's main result is that applying momentum to RK gradients, via $m_{n+1} = \beta m_n + g^*(\theta_n, h)$ and $\theta_{n+1} = \theta_n - h m_{n+1}$, bridges that gap and achieves better test accuracy than both Adam and vanilla RK4 on full-batch MNIST and Fashion-MNIST. It also establishes a preconditioning lemma showing that a positive-definite symmetric preconditioner keeps the loss decreasing along the modified gradient flow, and uses it to justify a modified AdaGrad preconditioner, along with a rescaled Drift-Adjusted Learning rate that each individually close part of the gap.
Load-bearing premise
The central practical claim rests on the assumption that the results observed on small MLP workloads with per-dataset tuning of the added hyperparameters transfer to the more complex workloads where such optimizers would matter; the paper explicitly leaves that transfer to future work.
Editorial extensions
If this is right
- On simple workloads, vanilla RK4 can match or beat tuned baselines while exposing only a learning rate to tune and maintaining no gradient accumulators.
- Momentum applied to RK gradients closes the large-batch generalization gap, making RK4-with-momentum more accurate than Adam on full-batch MNIST and Fashion-MNIST.
- Preconditioning with a modified AdaGrad matrix and a rescaled Drift-Adjusted Learning rate each individually narrow the large-batch gap, though neither alone fully closes it.
- Runge-Kutta optimizers require multiple gradient evaluations per step; their wall-clock time is comparable to Adam when all stage gradients fit in device memory, but roughly doubles when they do not.
- The stability gained by following gradient flow more precisely comes at the cost of losing the implicit regularization induced by first-order discretization error, which explains the large-batch gap.
Reading between the lines
- Editorial inference: if the large-batch gap is truly caused by missing implicit regularization, then pairing RK4 with explicit regularizers such as weight decay, label smoothing, or injected noise should extend its benefits beyond MNIST-scale tasks; this is not tested in the paper.
- Editorial inference: the momentum-on-RK-gradients scheme can be read as a deterministic analogue of stochastic noise injection; a continuous-time analysis of the scheme could predict how $\beta$ should scale with curvature to maintain the generalization benefit.
- Editorial inference: the CIFAR-10 ResNet-18 experiments with momentum and DALR hint that the modifications transfer beyond MLPs, but those runs used no augmentation, schedule, or weight decay, so they fall short of showing competitiveness in production-scale settings.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies the application of higher-order Runge-Kutta (RK) ODE solvers to deep learning, viewing neural network training as numerically solving the gradient flow ODE. It benchmarks vanilla RK4 against strong baselines on several workloads, identifies three limitations (wall-clock time, stiffness, and a large-batch generalization gap), and proposes three modifications to RK4: AdaGrad-like preconditioning, an adaptive learning rate (DALR), and momentum applied to RK gradients. The paper derives the order conditions for RK methods, proves a preconditioning lemma, and presents experiments on MNIST and Fashion-MNIST with MLPs (plus smaller CIFAR experiments) showing that the modifications bridge the generalization gap and, for the momentum version, claim better test accuracy than Adam. The conclusion explicitly acknowledges that the modifications were tested only on relatively simple workloads and that extending them to more complex settings is future work.
Significance. If its empirical claims are established, the paper makes a useful contribution by connecting a classical numerical-analysis framework to modern deep learning optimizers and by showing that simple modifications to vanilla RK4 can close the gap with Adam on small-scale full-batch tasks. The theoretical parts are solid: the order-condition derivation in Appendix A is correct, the preconditioning lemma (Lemma 4.1) is valid, and the paper's explicit statement of limitations in Section 5 is an honest and welcome feature. However, the central practical claim that the modified RK methods 'achieve better test accuracy than Adam' rests on experiments whose comparison control is not yet sufficient: Adam's hyperparameters are not tuned as thoroughly as those of the proposed methods, and no error bars or significance tests are reported for the key figures. These issues are fixable with additional experiments and re-analysis, so the paper is potentially valuable but not yet convincing on its main empirical claim.
major comments (3)
- [Section 4.3, Fig. 4, Appendix C.4] The claim that RK4 with momentum 'achieves better test accuracy than both Adam and vanilla RK4' is not supported by a controlled comparison. In Appendix C.4, Adam's learning rate is tuned while its beta parameters retain Optax defaults, but RK4+momentum has both its learning rate and momentum beta tuned per dataset (MNIST: 0.004, beta=0.95; Fashion-MNIST: 0.001, beta=0.95). Since the experiments are full-batch, Adam's default beta1=0.9 and beta2=0.999 may be poorly matched to deterministic gradients, and the reported gap could close or even reverse if Adam's betas were tuned per dataset. The authors should tune Adam's betas (or at least provide a sensitivity analysis over beta values) using the same search budget as for the proposed method.
- [Figures 2-4 and Appendix C.2-C.4] The learning curves in Figures 2-4 are presented without error bars or confidence intervals, and no significance test is reported for the final test-accuracy differences. With only 5 seeds and differences on the order of a few tenths of a percent, the claim that the modifications 'confer benefits' over Adam may be within seed noise. The authors should report mean plus/minus standard error (or confidence intervals) for the final test accuracy, and ideally perform a paired significance test across the shared seeds.
- [Section 3.1, Table 1] The claim that vanilla RK4 is 'competitive' with strong baselines is confounded by batch-size differences between the baseline and RK4 in several workloads. For example, Fashion-MNIST CNN uses baseline batch size 512 vs. RK4 batch size 64, CIFAR-10 uses baseline batch size 128 vs. RK4 batch size 512, and CIFAR-100 uses baseline batch size 128 vs. RK4 batch size 256. Because batch size affects both stochastic noise and the number of epochs per training step, the comparison is not purely an optimizer comparison. To support the competitiveness claim, the authors should match batch sizes for both optimizers, or at least report results with matched batch size as a sensitivity check.
minor comments (5)
- [Appendix C.2] The acronym 'ADGR' is introduced without definition; it is used in the captions of Figures 10 and 11 and in the text of Section 4.1, but the paper never spells out what it stands for.
- [References] References [29] and [30] are duplicates (both point to He et al., Deep residual learning for image recognition); this causes confusion in the caption of Figure 18, which cites the second copy.
- [Section 3.1] The phrase 'having only the learning rate train to tune' should read 'having only the learning rate to tune'.
- [Various captions] The word 'batchsize' appears in several figure captions and appendix headings; it should be written as 'batch size' for consistency with the rest of the text.
- [Section 5] The conclusion states that the modifications 'indeed improve upon vanilla RK4 and, in some cases, outperform Adam as well'; given the paper's own limitation statement that only simple workloads were tested, this claim should be explicitly scoped to the small-scale settings to avoid overgeneralization.
Circularity Check
No circularity found: the RK derivations are self-contained, and the empirical claims rest on disclosed experiments rather than on equations or self-citations that reduce to their own inputs.
full rationale
The paper's only derivation chain is the order-condition calculation for RK methods (Sec. 2, Appendix A): Eq. (5) expands a general RK step and Eq. (6) matches it to the Taylor expansion of the exact gradient-flow solution (Eq. (2)). That is standard, self-contained mathematics and does not assume the target claim. The preconditioning lemma (Lemma 4.1) is proven in the text from positive definiteness of A(theta), and the AdaGrad-like preconditioner (Eq. 12) is introduced as a practical choice, with its benefit verified empirically rather than derived from the lemma. The DALR learning rate (Eq. 15) is stated as a rescaling of the DAL idea and its two parameters (p, c) are tuned per dataset in Appendix C.3; no claim is made that the formula itself predicts the test-accuracy improvement. The momentum scheme (Eqs. 16-17) is a defined update rule; the statement that it 'achieves better test accuracy than both Adam and vanilla RK4' is an empirical result from Fig. 4 with explicitly reported hyperparameters in Appendix C.4, not a quantity forced by the update equations. The self-citations ([5], [13], [51], [52]) are motivational or attributive (natural metric, geometric complexity, DAL); the paper re-derives or states the needed formulas and does not invoke a uniqueness theorem or an unverified prior result to exclude alternatives. The skeptic's point about Adam's decay parameters being left at Optax defaults while RK4 gets per-dataset beta tuning is a comparison-fairness and external-validity concern, not circularity: no fitted parameter is renamed as a prediction, and no experimental output is set equal to an input by construction. Accordingly, no specific circular step can be exhibited under the required standard.
Assumptions & free parameters
free parameters (5)
- DALR exponent p =
0.8 for MNIST and Fashion-MNIST
- DALR cap c =
4.0 for MNIST, 1.0 for Fashion-MNIST
- Momentum beta =
0.95 for MNIST and Fashion-MNIST; 0.99 for CIFAR-10
- Preconditioner constant 1 =
1 (replaces AdaGrad epsilon)
- RK4 learning rate and batch size =
Varies per workload (e.g., 0.003, batch 16 on MNIST DNN)
assumptions (6)
- standard math Standard Runge-Kutta order conditions determine the order of the method
- domain assumption Gradient flow ODE is the relevant continuous-time model for deep learning optimization
- domain assumption Higher-order ODE solvers that track gradient flow more closely yield more stable training
- domain assumption The natural metric G(θ) = I + g g^T from [5] is relevant for preconditioning
- domain assumption Implicit regularization from discretization error or stochastic noise helps generalization
- standard math The loss remains a Lyapunov function for the preconditioned gradient flow when A is positive definite
Cite this review
Pith. "Pith review of Learning by solving differential equations." pith.science (2026). https://pith.science/paper/QD35S7M4
@misc{pith2026250513397,
author = {Pith},
title = {Pith review of: Learning by solving differential equations},
year = {2026},
howpublished = {\url{https://pith.science/paper/QD35S7M4}},
note = {Machine review of arXiv:2505.13397}
}
read the original abstract
Modern deep learning algorithms use variations of gradient descent as their main learning methods. Gradient descent can be understood as the simplest Ordinary Differential Equation (ODE) solver; namely, the Euler method applied to the gradient flow differential equation. Since Euler, many ODE solvers have been devised that follow the gradient flow equation more precisely and more stably. Runge-Kutta (RK) methods provide a family of very powerful explicit and implicit high-order ODE solvers. However, these higher-order solvers have not found wide application in deep learning so far. In this work, we evaluate the performance of higher-order RK solvers when applied in deep learning, study their limitations, and propose ways to overcome these drawbacks. In particular, we explore how to improve their performance by naturally incorporating key ingredients of modern neural network optimizers such as preconditioning, adaptive learning rates, and momentum.
Figures
Figures from the paper (16 more)
Reference graph
Works this paper leans on
-
[1]
Natural gradient works efficiently in learning.Neural computation, 10(2):251– 276, 1998
Shun-ichi Amari. Natural gradient works efficiently in learning.Neural computation, 10(2):251– 276, 1998
work page 1998
-
[2]
Scalable second order optimization for deep learning
Rohan Anil, Vineet Gupta, Tomer Koren, Kevin Regan, and Yoram Singer. Scalable second order optimization for deep learning. arXiv preprint arXiv:2002.09018, 2020
arXiv 2002
-
[3]
Stochastic runge-kutta methods and adaptive sgd-g2 stochastic gradient descent
Imen Ayadi and Gabriel Turinici. Stochastic runge-kutta methods and adaptive sgd-g2 stochastic gradient descent. In 2020 25th International Conference on Pattern Recognition (ICPR), 2021
work page 2020
-
[4]
Liapunov Functions and Stability in Control Theory
Andrea Bacciotti and Lionel Rosier. Liapunov Functions and Stability in Control Theory . Lecture Notes in Control and Information Sciences. Springer, London, 1 edition, 2001
work page 2001
-
[5]
David G.T. Barrett and Benoit Dherin. Implicit gradient regularization. In ICLR, 2021
work page 2021
-
[6]
Modular duality in deep learning
Jeremy Bernstein and Laker Newhouse. Modular duality in deep learning. arXiv preprint arXiv:2410.21265, 2024
arXiv 2024
-
[7]
Michael Betancourt, Michael I Jordan, and Ashia C Wilson. On symplectic optimization. arXiv preprint arXiv:1802.03653, 2018
arXiv 2018
-
[8]
A. A. Brown and M. C. Bartholomew-Biggs. Some effective methods for unconstrained optimization based on the solution of systems of ordinary differential equations. J. Optim. Theory Appl., 62(2):211–224, August 1989
work page 1989
Show all 68 references
-
[9]
On the implicit bias of adam
Matias D Cattaneo, Jason M Klusowski, and Boris Shigida. On the implicit bias of adam. arXiv:2309.00079, 2023
2023 arXiv
-
[10]
J. Cortés. Finite-time convergent gradient flows with applications to network consensus. Automatica, 42(11):1993–2000, 2006
1993
-
[11]
Dahl, Frank Schneider, Peter Mattson, et al
George E. Dahl, Frank Schneider, Peter Mattson, et al. Benchmarking neural network training algorithms. arXiv preprint arXiv:2306.07179, 2023
2023 arXiv
-
[12]
The road less scheduled
Aaron Defazio, Xingyu Yang, Harsh Mehta, Konstantin Mishchenko, Ahmed Khaled, and Ashok Cutkosky. The road less scheduled. arXiv preprint arXiv:2405.15682, 2024. 10
2024 arXiv
-
[13]
Why neural networks find simple solutions: The many regularizers of geometric complexity
Benoit Dherin, Michael Munn, Mihaela Rosca, and David Barrett. Why neural networks find simple solutions: The many regularizers of geometric complexity. In NeurIPS, 2022
2022
-
[14]
Corridor geometry in gradient-based optimization, 2024
Benoit Dherin and Mihaela Rosca. Corridor geometry in gradient-based optimization, 2024
2024
-
[15]
Adam: A method for stochastic optimization
Kingma Diederik. Adam: A method for stochastic optimization. (No Title), 2014
2014
-
[16]
An image is worth 16x16 words: Transformers for image recognition at scale
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv...
2010 arXiv
-
[17]
Incorporating nesterov momentum into adam
Timothy Dozat. Incorporating nesterov momentum into adam. In ICLR Workshop, 2016
2016
-
[18]
Adaptive subgradient methods for online learning and stochastic optimization
John Duchi, Elad Hazan, and Yoram Singer. Adaptive subgradient methods for online learning and stochastic optimization. Journal of Machine Learning Research, 12:2121–2159, 2011
2011
-
[19]
Towards hyperparameter-agnostic dnn training via dynamical system insights
Carmel Fiscko, Aayushya Agarwal, Yihan Ruan, Soummya Kar, Larry Pileggi, and Bruno Sinopoli. Towards hyperparameter-agnostic dnn training via dynamical system insights. arXiv preprint arXiv:2310.13901, 2023
2023 arXiv
-
[20]
Conformal symplectic and relativistic optimization
Guilherme França, Jeremias Sulam, Daniel Robinson, and René Vidal. Conformal symplectic and relativistic optimization. In NeurIPS, 2020
2020
-
[21]
Admm and accelerated admm as continuous dynamical systems
Guilherme França, Daniel P Robinson, and René Vidal. Admm and accelerated admm as continuous dynamical systems. In International Conference on Machine Learning , pages 1554–1562. PMLR, 2018
2018
-
[22]
Gradient flows and proximal splitting methods: A unified view on accelerated and stochastic optimization
Guilherme França, Daniel P Robinson, and René Vidal. Gradient flows and proximal splitting methods: A unified view on accelerated and stochastic optimization. Physical Review E, 103(5), 2021
2021
-
[23]
Implicit regularization in heavy-ball momentum accelerated stochastic gradient descent
Avrajit Ghosh, He Lyu, Xitong Zhang, and Rongrong Wang. Implicit regularization in heavy-ball momentum accelerated stochastic gradient descent. ICLR, 2023
2023
-
[24]
Gilmer, George E
Justin M. Gilmer, George E. Dahl, Zachary Nado, Priya Kasimbeg, and Sourabh Medapati. init2winit: a jax codebase for initialization, optimization, and tuning research. github, 2023
2023
-
[25]
Shampoo: Preconditioned stochastic tensor optimization
Vineet Gupta, Tomer Koren, and Yoram Singer. Shampoo: Preconditioned stochastic tensor optimization. In International Conference on Machine Learning, pages 1842–1850. PMLR, 2018
2018
-
[26]
Geometric numerical integration
Ernst Hairer, Marlis Hochbruck, Arieh Iserles, and Christian Lubich. Geometric numerical integration. Oberwolfach Reports, 3(1):805–882, 2006
2006
-
[27]
Solving Ordinary Differential Equations I: Nonstiff Problems, volume 8 of Springer Series in Computational Mathematics
Ernst Hairer, Syvert P Nørsett, and Gerhard Wanner. Solving Ordinary Differential Equations I: Nonstiff Problems, volume 8 of Springer Series in Computational Mathematics. Springer, 2 edition, 1993
1993
-
[28]
Solving Ordinary Differential Equations II: Stiff and Differential-Algebraic Problems, volume 14 of Springer Series in Computational Mathematics
Ernst Hairer and Gerhard Wanner. Solving Ordinary Differential Equations II: Stiff and Differential-Algebraic Problems, volume 14 of Springer Series in Computational Mathematics. Springer, Berlin, Heidelberg, 2 edition, 1996
1996
-
[30]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, 2016
2016
-
[31]
Optax: composable gradient transformation and optimisation, in jax!, 2020
Matteo Hessel, David Budden, Fabio Viola, Mihaela Rosca, Eren Sezener, and Tom Hennigan. Optax: composable gradient transformation and optimisation, in jax!, 2020
2020
-
[32]
Yang, Zachary Nado, Sourabh Medapati, Philipp Hennig, Michael Rabbat, and George E
Priya Kasimbeg, Frank Schneider, Runa Eschenhagen, Juhan Bae, Chandramouli Shama Sastry, Mark Saroufim, BOYUAN FENG, Less Wright, Edward Z. Yang, Zachary Nado, Sourabh Medapati, Philipp Hennig, Michael Rabbat, and George E. Dahl. Accelerating neural network training: An analys...
2025
-
[33]
Kingma and Jimmy Ba
Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In ICLR, 2015
2015
-
[34]
Continuous time analysis of momentum methods
Nikola B Kovachki and Andrew M Stuart. Continuous time analysis of momentum methods. Journal of Machine Learning Research, 22(17):1–40, 2021
2021
-
[35]
Learning multiple layers of features from tiny images
Alex Krizhevsky. Learning multiple layers of features from tiny images. https://www.cs.toronto.edu/ kriz/learning-features-2009-TR.pdf, 2009
2009
-
[36]
John M. Lee. Introduction to Smooth Manifolds, volume 218 of Graduate Texts in Mathematics. Springer, 2nd edition, 2012
2012
-
[37]
Visualizing the loss landscape of neural nets
Hao Li, Zheng Xu, Gavin Taylor, Christoph Studer, and Tom Goldstein. Visualizing the loss landscape of neural nets. In NeurIPS, 2018
2018
-
[38]
Implicit stochastic gradient descent for training physics-informed neural networks
Ye Li, Song-Can Chen, and Sheng-Jun Huang. Implicit stochastic gradient descent for training physics-informed neural networks. arXiv preprint arXiv:2303.01767, 2023
2023 arXiv
-
[39]
Understanding the difficulty of training transformers
Liyuan Liu, Xiaodong Liu, Jianfeng Gao, Weizhu Chen, and Jiawei Han. Understanding the difficulty of training transformers. InProceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP 2020), April 2020
2020
-
[40]
Decoupled weight decay regularization
Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101, 2017
2017 arXiv
-
[41]
Decoupled weight decay regularization
Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. In ICLR, 2019
2019
-
[42]
Aggregated momentum: Stability through passive damping
James Lucas, Shengyang Sun, Richard Zemel, and Roger Grosse. Aggregated momentum: Stability through passive damping. In International Conference on Learning Representations, 2019
2019
-
[43]
Optimizing neural networks with kronecker-factored approx- imate curvature
James Martens and Roger Grosse. Optimizing neural networks with kronecker-factored approx- imate curvature. In International conference on machine learning, pages 2408–2417. PMLR, 2015
2015
-
[44]
An empirical model of large-batch training
Sam McCandlish, Jared Kaplan, Dario Amodei, and OpenAI Dota Team. An empirical model of large-batch training. arXiv preprint arXiv:1812.06162, 2018
2018 arXiv
-
[45]
A dynamical systems perspective on nesterov acceleration
Michael Muehlebach and Michael I Jordan. A dynamical systems perspective on nesterov acceleration. In International Conference on Machine Learning, pages 4656–4662. PMLR, 2019
2019
-
[46]
Dynamics of sgd with stochastic polyak stepsizes: Truly adaptive variants and convergence to exact solution
Antonia Orvieto, Simon Lacoste-Julien, and Nicolas Loizou. Dynamics of sgd with stochastic polyak stepsizes: Truly adaptive variants and convergence to exact solution. In NeurIPS, 2022
2022
-
[47]
An Adaptive Stochastic Gradient Method with Non-negative Gauss-Newton Stepsizes
Antonio Orvieto and Lin Xiao. An Adaptive Stochastic Gradient Method with Non-negative Gauss-Newton Stepsizes. arXiv preprint arXiv:2407.04358, 2024
2024 arXiv
-
[48]
Boris T. Polyak. Some methods of speeding up the convergence of iteration methods. USSR Computational Mathematics and Mathematical Physics, 4(5):1–17, 1964
1964
-
[49]
On the curvature of the loss landscape
Alison Pouplin, Hrittik Roy, Sidak Pal Singh, and Georgios Arvanitidis. On the curvature of the loss landscape. arXiv preprint arXiv:2307.04719, 2023
2023 arXiv
-
[50]
Training generative adversarial networks by solving ordinary differential equations
Chongli Qin, Yan Wu, Jost Tobias Springenberg, Andy Brock, Jeff Donahue, Timothy Lillicrap, and Pushmeet Kohli. Training generative adversarial networks by solving ordinary differential equations. In Advances in Neural Information Processing Systems, 2020
2020
-
[51]
Mihaela Rosca, Yan Wu, Benoit Dherin, and David G.T. Barrett. Discretization drift in two- player games. In ICML, 2021
2021
-
[52]
On a continuous time model of gradient descent dynamics and instability in deep learning
Mihaela Rosca, Yan Wu, Chongli Qin, and Benoit Dherin. On a continuous time model of gradient descent dynamics and instability in deep learning. In TMLR, 2023. 12
2023
-
[53]
Rumelhart, Geoffrey E
David E. Rumelhart, Geoffrey E. Hinton, and Ronald J. Williams. Learning representations by back-propagating errors. Nature, 323:533–536, 1986
1986
-
[54]
Acceleration via symplectic discretiza- tion of high-resolution differential equations
Bin Shi, Simon S Du, Weijie J Su, and Michael I Jordan. Acceleration via symplectic discretiza- tion of high-resolution differential equations. In Advances in Neural Information Processing Systems, pages 5744–5752, 2019
2019
-
[55]
A distributed data-parallel pytorch implementation of the distributed shampoo optimizer for training neural networks at-scale
Hao-Jun Michael Shi, Tsung-Hsien Lee, Shintaro Iwasaki, Jose Gallego-Posada, Zhijing Li, Kaushik Rangadurai, Dheevatsa Mudigere, and Michael Rabbat. A distributed data-parallel pytorch implementation of the distributed shampoo optimizer for training neural networks at-scale. a...
2023 arXiv
-
[56]
Improving optimizers by runge-kutta method: A case study of sgd and adam
Dan Su, Qihai Jiang, Enhong Liu, and Mei Liu. Improving optimizers by runge-kutta method: A case study of sgd and adam. In 2024 12th International Conference on Intelligent Control and Information Processing (ICICIP), 2024
2024
-
[57]
A differential equation for modeling nes- terov’s accelerated gradient method: theory and insights.Journal of Machine Learning Research, 17:1–43, 2016
Weijie Su, Stephen Boyd, and Emmanuel Candès. A differential equation for modeling nes- terov’s accelerated gradient method: theory and insights.Journal of Machine Learning Research, 17:1–43, 2016
2016
-
[58]
On the importance of initial- ization and momentum in deep learning
Ilya Sutskever, James Martens, George Dahl, and Geoffrey Hinton. On the importance of initial- ization and momentum in deep learning. In Proceedings of the 30th International Conference on Machine Learning, volume 28, pages 1139–1147. PMLR, 2013
2013
-
[59]
Spike no more: Stabilizing the pre-training of large language models, 2025
Sho Takase, Shun Kiyono, Sosuke Kobayashi, and Jun Suzuki. Spike no more: Stabilizing the pre-training of large language models, 2025
2025
-
[60]
Rmsprop: Divide the gradient by a running average of its recent magnitude
Tijmen Tieleman and Geoffrey Hinton. Rmsprop: Divide the gradient by a running average of its recent magnitude. COURSERA Neural Networks for Machine Learning, 2012
2012
-
[61]
Understanding and mitigating gradient flow pathologies in physics-informed neural networks
Sifan Wang, Yujun Teng, and Paris Perdikaris. Understanding and mitigating gradient flow pathologies in physics-informed neural networks. SIAM Journal on Scientific Computing , 43(5):A3055–A3081, 2021
2021
-
[62]
Small-scale proxies for large-scale transformer training instabilities
Mitchell Wortsman, Peter J Liu, Lechao Xiao, Katie E Everett, Alexander A Alemi, Ben Adlam, John D Co-Reyes, Izzeddin Gur, Abhishek Kumar, Roman Novak, Jeffrey Pennington, Jascha Sohl-Dickstein, Kelvin Xu, Jaehoon Lee, Justin Gilmer, and Simon Kornblith. Small-scale proxies fo...
2024
-
[63]
Structured pre- conditioners in adaptive optimization: A unified analysis
Shuo Xie, Tianhao Wang, Sashank Reddi, Sanjiv Kumar, and Zhiyuan Li. Structured pre- conditioners in adaptive optimization: A unified analysis. arXiv preprint arXiv:2503.10537, 2025
2025 arXiv
-
[64]
Wide residual networks
Sergey Zagoruyko and Nikos Komodakis. Wide residual networks. arXiv preprint arXiv:1605.07146, 2016
2016 arXiv
-
[65]
Matthew D. Zeiler. Adadelta: An adaptive learning rate method.arXiv preprint arXiv:1212.5701, 2012
2012 arXiv
-
[66]
Direct runge-kutta discretiza- tion achieves acceleration
Jingzhao Zhang, Aryan Mokhtari, Suvrit Sra, and Ali Jadbabaie. Direct runge-kutta discretiza- tion achieves acceleration. In Advances in Neural Information Processing Systems, 2018
2018
-
[67]
Lookahead optimizer: k steps forward, 1 step back
Michael R Zhang, James Lucas, Geoffrey Hinton, and Jimmy Ba. Lookahead optimizer: k steps forward, 1 step back. In Advances in neural information processing systems, pages 9591–9601, 2019. 13 A Runge-Kutta updates This section presents the formulas for Runge-Kutta (RK) updates...
2019
-
[68]
In the main paper, we benchmarked RK4, which is the classical 4th order method, and it has an error of sizeO(h5)
to illustrate the general approach for finding RK coefficients. In the main paper, we benchmarked RK4, which is the classical 4th order method, and it has an error of sizeO(h5). Recall that a RK method is given by a matrixA = (aij) and a vectorb = (bi). The corresponding RK up...
-
[69]
Therefore, the correct way to write the gradient flow ODE is with the help of an underlying metric tensorG(θ) on the parameter space given by ˙θ(t) = G(θ(t))−1∇L(θ(t))
for more details):µ→G−1µ. Therefore, the correct way to write the gradient flow ODE is with the help of an underlying metric tensorG(θ) on the parameter space given by ˙θ(t) = G(θ(t))−1∇L(θ(t)). (44) In this form, the gradient flow ODE has the exact same form in every coordina...
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.