REVIEW 3 major objections 5 minor 63 references
Data-driven modeling of a settling sphere in a quiescent medium
T0 review · 3 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read Trained on positions alone, neural differential equations forecast a chaotic settling sphere's ensemble statistics—terminal velocity, settling time, lateral motion, and acceleration—without simulating the fluid; settling-time means match…
desk verdict The NODE half is a solid, citable contribution on a genuinely new PTV dataset; the NSDE half is in-sample reconstruction dressed up as forecasting, and the authors' own conclusion admits as much. 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 machinery is the neural differential equation built on a position-only state. For the NODE, the velocity field $g(x)$ in $dx/dt = g(x)$ is a small multilayer perceptron trained by minimizing the squared difference between predicted and observed one-step-ahead positions, with gradients obtained by automatic differentiation. For the NSDE, the trajectory is a stochastic process $dX_t = f_\theta(X_t,t)\,dt + g_\theta(X_t,t)\,dB_t$ solved with the Euler–Maruyama scheme under Stratonovich integration, where $f_\theta$ is the drift network, $g_\theta$ the diffusion network, and a control term $\bar{X}_t = \xi(t, X_t, \chi(t); \theta_\xi)$ driven by the cubic-spline interpolation of the observed path guarantees a unique strong solution and stabilizes training. This control-based formulation, taken from the NSDE literature, is what allows the stochastic model to be trained with a plain mean-squared-error loss rather than a separate discriminator network.
What would settle it
Release the sphere from rest at two different depths in the same tank, so that trajectories pass the same depth with different velocity histories, and check whether the trained position-only NODE predicts the same velocity at that depth; because the model asserts $dx/dt = g(x)$, any measurable history-dependence of velocity at a fixed position would falsify the Markov assumption.
Extended reading notes
Core claim
The paper's central claim is that the chaotic three-dimensional settling of a sphere can be learned, at the level of ensemble statistics, by a neural network that maps position to velocity. The deterministic NODE integrates $dx/dt = g(x)$ with $g$ a small multilayer perceptron and accurately reconstructs individual trajectory statistics, generalizing to unseen initial conditions drawn from the same distribution; the stochastic NSDE augments the drift network with a learned diffusion term and a cubic-spline control path, and better reproduces the long-time probability distributions of final horizontal positions. Both models capture the ensemble-averaged streamwise and lateral velocity as functions of depth, the settling time to $z/d = 50$ ($\bar{\tau}_z = 56.2$ for NODE and $55.6$ for NSDE versus $55.8$ for experiment), the decay of auto- and cross-correlation functions, and the ensemble-averaged acceleration toward zero at long times. The authors conclude that 'both models can accurately forecast the statistical characteristics of the settling sphere system up to the second-order dynamics with minor error,' while the short-time transient associated with release and free-surface entry remains poorly captured.
Load-bearing premise
The load-bearing assumption is that a settling sphere's velocity is a unique function of its current position, even though the real sphere carries momentum, added-mass forces, and wake memory from its past motion, which is precisely why the start-up transient and free-surface entry are the paper's reported weak spot.
Editorial extensions
If this is right
- A position-only neural ODE trained on roughly 200 experimental trajectories reproduces the ensemble-averaged terminal velocity, settling time (mean within 0.7 percent), and lateral-displacement statistics of a chaotic settling sphere.
- The stochastic NSDE, despite missing the short-time transient, matches the long-time probability density of final horizontal positions better than the deterministic NODE.
- Both models capture second-order dynamics: ensemble-averaged streamwise and lateral accelerations approach zero correctly at long times, although variances are underestimated.
- Model accuracy degrades with dataset size in different ways: NODE trained on 50 percent of the data still captures the general statistical trend, while both models trained on 10 percent fail.
- Because the models operate on positions alone and require no fluid solver, they can serve as statistical surrogates for settling in flows whose governing equations are not explicitly known.
Reading between the lines
- We infer that the position-only Markov assumption, if it holds, implies the deterministic model cannot distinguish two trajectories that pass the same depth with different velocity histories; testing this would sharpen the method's boundary.
- We read the authors' contrast between smooth NODE trajectories and noisy experimental lateral velocity as evidence that the effective noise is intrinsic to this flow regime; comparing the NSDE's learned diffusion amplitude with experimental repeatability would test this.
- We expect the framework to transfer to other particle shapes and fluid types only if a position-only state remains adequate; adding velocity or a memory term to the state would be the natural extension whenever short-time transients contribute to the statistics of interest.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper develops deterministic (NODE) and stochastic (NSDE) data-driven models for the three-dimensional trajectories of a settling sphere in a quiescent fluid, using experimental PTV data. The NODE is trained on an 80/20 train/test split and evaluated on both seen-distribution and held-out initial conditions (Appendix A1), while the NSDE uses a control term built from each trajectory's cubic spline coefficients and is trained on the full dataset. The models are compared against experiment for ensemble-averaged velocities, lateral displacement, settling-time distributions, correlation functions, and acceleration statistics. The central claim is that both models accurately forecast the time evolution and statistical characteristics of the system up to second-order dynamics.
Significance. If the forecasting claim were fully supported, this would be a valuable demonstration of data-driven surrogates for a chaotic particle-laden flow, with a rare high-resolution experimental dataset. The NODE validation on a genuinely held-out 20% test set in Appendix A1 is a solid element, as is the systematic comparison of ensemble statistics and the dataset-size sensitivity study. The NSDE, however, is evaluated only on the trajectories used for training, so the evidence for its forecasting capability is currently missing. The paper's own conclusion concedes that the NSDE 'cannot generalize the short-time dynamics of unseen initial conditions' because of the spline-control dependence. Thus the significance of the present results is real but narrower than the stated 'both models' claim.
major comments (3)
- [Section III.A, Figs. 2–5, and Conclusions] The NSDE evaluation in Section III.A uses the same 189 experimentally gathered trajectories that were used for training: the control term in Eq. (10) requires the cubic spline coefficients of each target trajectory, and the paper states (Section III.A) that 'it was necessary to use only experimentally gathered data for the NSDE case.' Consequently, Figs. 2(c,f), 3(a,b), 4, and 5 for the NSDE demonstrate reconstruction/interpolation of training data, not forecasting. The Conclusion's statement that 'both models can accurately forecast the statistical characteristics of the settling sphere system' is therefore not supported for the NSDE by the reported evidence. The authors should either validate the NSDE on held-out trajectories (e.g., train on a subset and evaluate on unseen trajectories) or explicitly reframe the NSDE results as a reconstruction/statistical-generation check rather than a forecast.
- [Section II.B.2, Eqs. (9) and (10)] The NSDE method is underspecified. The solved equation shown as Eq. (9) is dX_t = f_theta dt + g_theta dB_t, but the control term \bar{X}_t introduced in Eq. (10) is omitted from Eq. (9); it is therefore unclear whether the trained model includes the control term in the drift, as implied by the surrounding text, or not. In addition, the text declares Stratonovich integration in Eq. (5) and discusses midpoint evaluation, yet the numerical solver is stated to be Euler-Maruyama, which is an Ito-type scheme. This discrepancy matters for the interpretation of the diffusion term and for reproducibility. Please specify the exact form of the solved SDE (including the control term) and the integration convention actually used.
- [Section II.B.1, Eq. (1)] The modeling assumption dx/dt = g(x) with x the particle position alone restricts the state to a first-order Markovian ODE in position. A settling sphere is a second-order, history-dependent system (added mass, drag, wake memory, Basset history force), and this structural assumption cannot represent the initial acceleration from rest or the transient after free-surface entry. The paper's own observations of poor short-time transient capture (Figs. 2c,f and 3a) are consistent with this limitation, but the text tends to attribute them solely to data or stochastic effects. This assumption should be explicitly acknowledged as a modeling choice with known consequences, and the short-time limitations should be framed accordingly.
minor comments (5)
- [Section II.B.2] The solver is repeatedly called 'Euler-Murayama'; the standard spelling is 'Euler-Maruyama'.
- [Section III.A, first paragraph] The text says 'Fig. 2a-f illustrates the temporal evolution...' but the panels are grouped as (a-c) for lateral displacement and (d-f) for lateral velocity; please align the panel references with the actual figure layout.
- [Appendix A1] Appendix A1 states that the 189 ground-truth trajectories are split 80/20, but the main text says the experiment was repeated 'approximately 200 times' and that NSDE analysis used 'exactly 189 trajectories.' The relationship between these numbers should be clarified for consistency.
- [Section III.A, paragraph on NODE deviations] The phrase 'the model trained on more data from the later stages' is not supported by the training description; please rephrase to describe the actual effect of the training data distribution on early-stage accuracy.
- [Section II.B.2, Eq. (7)] The statement that 'the only difference in evaluation of the Ito and Stratonovich integrals is in the choice of t*_j' is an oversimplification; the distinction also affects the chain rule and the resulting stochastic calculus. A more careful wording would avoid confusing readers.
Circularity Check
NSDE 'forecast' reduces to reconstruction: Eq. (10) feeds each trajectory's own cubic spline into the model, and all NSDE statistics come from the same 189 training trajectories; the NODE branch is independently tested.
-
self definitional
[Sec. II.B.2, Eq. (10) and following paragraph]
"Specifically, this control term is introduced as ¯Xt = ξ(t, Xt, χ(t); θξ), (10) ... By defining our network ξ with respect to the cubic spline coefficients, the continuously defined paths only need to be pre-initialized while still giving the advantage of a unique strong solution throughout training of the SDE."
Eq. (10) makes the NSDE output a function of the controlled path χ(t), and χ(t) is the cubic spline interpolation of the experimental trajectory being modeled. The predicted trajectory is therefore not generated from initial conditions alone; its own target appears as an input. Statistical agreement of the NSDE output with that target is built into the construction, so comparing them is a reconstruction check rather than an independent forecast.
-
fitted input called prediction
[Sec. III.A (Reconstruction by NODE & NSDE), paragraph before Fig. 2]
"However, because the control term in the NSDE architecture requires prior generation of cubic spline coefficients, it was necessary to use only experimentally gathered data for the NSDE case. As a result, analysis done by the NSDEs consisted of exactly 189 trajectories as opposed to the 400 randomly generated initial conditions gathered for the NODE case described above."
All 189 trajectories used for NSDE analysis are the trajectories on which the 100%-data NSDE was trained ('the NSDE model was trained on the full dataset for the 100% data case'). No held-out trajectories are used for the NSDE statistics in Figs. 2-5. The reported long-time agreement (mean settling time 55.6 vs 55.8, displacement PDFs, correlation functions, acceleration) is therefore an in-sample reconstruction, not a forecast. The conclusion concedes the dependence ('cannot generalize ... exclusive dependence between each trajectory and its own cubic spline coefficients') but still presents both models as forecasting the statistics.
full rationale
The NODE branch is not circular: it is trained on an 80% split, has a genuine held-out test in Appendix A1, and its ensemble check samples new initial conditions from a fitted Gaussian, so its statistical agreement is an out-of-sample statement within the same initial-condition distribution. The NSDE branch, however, is circular in the specific sense that the quantity being 'forecast' is fed into the model. The control term in Eq. (10) uses the cubic spline coefficients of the experimental trajectory, and the 100%-data NSDE was trained and evaluated on the same 189 trajectories; no NSDE evaluation is performed on held-out trajectories. The paper itself concedes the exclusive dependence between each trajectory and its own spline coefficients, yet still summarizes the NSDE results as forecasting the statistical characteristics. This is partial circularity: one of the two models' central claims reduces by construction to a reconstruction check, while the NODE claim retains independent content. No load-bearing self-citation chain is present; prior work by the authors is cited incidentally.
Assumptions & free parameters
free parameters (4)
- NODE network weights theta_f =
Trained over 48,000 iterations, batch size 256, AdamW
- NSDE drift and diffusion network weights theta =
Trained over 30,000 iterations, batch size 16, Adam
- Initial-condition Gaussian (mean, variance) =
Mean and variance of experimental initial positions
- Hyperparameters (hidden dimension, batch time, learning rate schedule) =
Hidden dimension 64, learning rate 1e-3 to 1e-4, etc.
assumptions (5)
- ad hoc to paper Position-only Markovian state: dx/dt = g(x) with x the particle position
- domain assumption The 189-200 PTV trajectories form a representative statistical ensemble
- domain assumption Finite-difference velocities and accelerations from PTV positions with re-projection error 0.07d are accurate
- domain assumption Goossens terminal velocity formula holds for this sphere
- standard math Ito and Stratonovich stochastic calculus background, including existence and uniqueness of SDE solutions
Cite this review
Pith. "Pith review of Data-driven modeling of a settling sphere in a quiescent medium." pith.science (2026). https://pith.science/paper/BNQYMFVA
@misc{pith2026250712551,
author = {Pith},
title = {Pith review of: Data-driven modeling of a settling sphere in a quiescent medium},
year = {2026},
howpublished = {\url{https://pith.science/paper/BNQYMFVA}},
note = {Machine review of arXiv:2507.12551}
}
read the original abstract
We develop data-driven models to predict the dynamics of a freely settling sphere in a quiescent Newtonian fluid using experimentally obtained trajectories. Particle tracking velocimetry was used to obtain a comprehensive dataset of settling motions, which we use to train neural networks that model the spatial evolution of a spherical particle without explicitly resolving the surrounding fluid dynamics. We employ deterministic neural ordinary differential equations (NODEs) and stochastic neural stochastic differential equations (NSDEs) to reconstruct the sphere's trajectory and capture key statistical features of the settling process. The models are evaluated based on short- and long-time dynamics, including ensemble-averaged velocity evolution, settling time distributions, and probability density functions of the final settling positions. We also examine the correlation between lateral displacement and streamwise velocity and assess the impact of dataset size on predictive accuracy. While NODEs excel in trajectory reconstruction and generalization across different initial conditions, NSDEs effectively capture statistical trends in the long-time behavior but are more sensitive to data availability. Acceleration profiles computed via second-order finite difference schemes confirm that both approaches accurately capture long-time dynamics, though short-time transients pose challenges.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
Department of Mechanical Science and Engineering, University of Illinois, Urbana, Illinois 61801, USA
-
[2]
Department of Aerospace Engineering, University of Illinois, Urbana, Illinois 61801, USA
-
[3]
Department of Civil and Environmental Engineering, University of Illinois, Urbana, Illinois 61801, USA
-
[4]
Department of Earth Science and Environmental Change, University of Illinois, Urbana, Illinois 61801, USA. † 1 arXiv:2507.12551v1 [physics.flu-dyn] 16 Jul 2025 Abstract We develop data-driven models to predict the dynamics of a freely settling sphere in a quiescent Newtonian fluid using experimentally obtained trajectories. Particle tracking velocimetry w...
work page Pith review arXiv 2025
-
[5]
NODE: Deterministic modeling Let’s assume a deterministic, Markovian dynamics, and x ∈ RdN represent the state, which is defined as the position of the particle center in the ( x, y, z) coordinate system. A common approach in data-driven modeling is to approximate the time evolution of x using a learned function g as follows dx dt = g(x). (1) here, g is t...
-
[6]
We use automatic differentiation to determine the derivatives of g with respect to θf Chen et al
(3) where B is the batch size. We use automatic differentiation to determine the derivatives of g with respect to θf Chen et al. [29]. To optimize the loss function described in equation 3, we use an AdamW optimizer in PyTorch Paszke. [46]. Table 1 summarizes the network architectures used in this study for the NODE. Finally, while stabilization terms hav...
-
[7]
Neural network architectures for the NODE and NSDE
NSDE: Stochastic modeling Due to the nature of the experimental data gathered and the underlying physical pro- cesses, a promising modification to classical deterministic data-driven models is to represent the system by a stochastic differential equation (e.g., due to potential noise in experimental 7 TABLE I. Neural network architectures for the NODE and...
-
[8]
U. Ulusoy, A review of particle shape effects on material properties for various engineering applications: from macro to nanoscale, Minerals 13, 91 (2023)
work page 2023
Show all 63 references
-
[9]
Dubuis and G
R. Dubuis and G. De Cesare, The clogging of riverbeds: A review of the physical processes, Earth-Science Reviews 239, 104374 (2023). 23 FIG. 6. (a) Ensemble-averaged streamwise and lateral velocities, (b) ensemble-averaged lateral displacement, and (c) crosscorrelation between...
2023
-
[10]
J. C. Winterwerp, On the flocculation and settling velocity of estuarine mud, Continental shelf research 22, 1339 (2002)
2002
-
[11]
Oursel, C
B. Oursel, C. Garnier, I. Pairaud, D. Omanovi´ c, G. Durrieu, A. D. Syakti, C. Le Poupon, B. Thouvenin, and Y. Lucas, Behaviour and fate of urban particles in coastal waters: Settling rate, size distribution and metals contamination characterization, Estuarine, Coastal and She...
2014
-
[12]
Maggi, The settling velocity of mineral, biomineral, and biological particles and aggregates in water, Journal of Geophysical Research: Oceans 118, 2118 (2013)
F. Maggi, The settling velocity of mineral, biomineral, and biological particles and aggregates in water, Journal of Geophysical Research: Oceans 118, 2118 (2013)
2013
-
[13]
H.-J. Yoon, G. Lee, J.-T. Kim, J.-Y. Yoo, H. Luan, S. Cheng, S. Kang, H. L. T. Huynh, H. Kim, J. Park, et al., Biodegradable, three-dimensional colorimetric fliers for environmental monitoring, Science advances 8, eade3201 (2022)
2022
-
[14]
Marcharla, S
E. Marcharla, S. Vinayagam, L. Gnanasekaran, M. Soto-Moscoso, W.-H. Chen, S. Thanigaivel, and S. Ganesan, Microplastics in marine ecosystems: A comprehensive review of biological and ecological implications and its mitigation approach using nanotechnology for the sustainable e...
2024
-
[15]
Saravanan, P
A. Saravanan, P. S. Kumar, S. Jeevanantham, S. Karishma, B. Tajsabreen, P. Yaashikaa, and B. Reshma, Effective water/wastewater treatment methodologies for toxic pollutants removal: Processes and applications towards sustainable development, Chemosphere 280, 130595 (2021). 24
2021
-
[16]
Veldhuis and A
C. Veldhuis and A. Biesheuvel, An experimental study of the regimes of motion of spheres falling or ascending freely in a newtonian fluid, International journal of multiphase flow 33, 1074 (2007)
2007
-
[17]
K. D. Goral, H. G. Guler, B. E. Larsen, S. Carstensen, E. D. Christensen, N. B. Kerpen, T. Schlurmann, and D. R. Fuhrman, Settling velocity of microplastic particles having regular and irregular shapes, Environmental Research 228, 115783 (2023)
2023
-
[18]
Shetty, J
R. Shetty, J. Sharma, and M. Tyagi, Experimental study on sand detection and monitoring using distributed acoustic sensing for multiphase flow in horizontal pipes, SPE Journal 29, 1045 (2024)
2024
-
[19]
Bousiotis, L.-N
D. Bousiotis, L.-N. S. Alconcel, D. C. Beddows, R. M. Harrison, and F. D. Pope, Monitor- ing and apportioning sources of indoor air quality using low-cost particulate matter sensors, Environment International 174, 107907 (2023)
2023
-
[20]
Allen, L
H. Allen, L. the motion of a sphere in a viscous fluid, The London, Edinburgh, and Dublin Philosophical Magazine and Journal of Science 50, 519 (1900)
1900
-
[21]
D. G. Karamanev, Equations for calculation of the terminal velocity and drag coefficient of solid spheres and gas bubbles, Chemical Engineering Communications 147, 75 (1996)
1996
-
[22]
T. T. Truscott, B. P. Epps, and A. H. Techet, Unsteady forces on spheres during free-surface water entry, J. Fluid. Mech. 704, 173–210 (2012)
2012
-
[23]
Jenny, J
M. Jenny, J. Dusek, and G. Bouchet, Instabilities and transition of a sphere falling or ascending freely in a newtonian fluid, J. Fluid Mech. 508, 201–239 (2004)
2004
-
[24]
Z. Xu, X. Song, G. Li, Z. Pang, and Z. Zhu, Settling behavior of non-spherical particles in power-law fluids: Experimental study and model development, Particuology 46, 30 (2019)
2019
-
[25]
Horowitz and C
M. Horowitz and C. H. K. Williamson, The effect of reynolds number on the dynamics and wakes of freely rising and falling spheres, J. Fluid M. 651, 251–294 (2010)
2010
-
[26]
Zhou and J
W. Zhou and J. Duˇ sek, Chaotic states and order in the chaos of the paths of freely falling and ascending spheres, International Journal of Multiphase Flow 75, 205 (2015)
2015
-
[27]
A. J. Fox and M. D. Graham, Data-driven low-dimensional model of a sedimenting flexible fiber, Phys. Rev. Fluids 9, 084101 (2024)
2024
-
[28]
Delcey, Y
M. Delcey, Y. Cheny, J.-B. Keck, A. Gans, and S. K. de Richter, Identification of settling velocity with physics informed neural networks for sediment laden flows, Computer Methods in Applied Mechanics and Engineering 432, 117389 (2024). 25
2024
-
[29]
Z. Cao, P. J. Wolfram, Jr., J. C. Rowland, Y. Zhang, and D. Pasqualini, A Data-driven Approach to Predict Sediment Settling Velocity, in AGU Fall Meeting Abstracts, Vol. 2019 (2019) pp. EP51F–2184
2019
-
[30]
Bressane, C
A. Bressane, C. P. Melo, S. Sharifi, P. G. da Silva, D. H. R. Toda, and R. Moruzzi, Fuzzy machine learning predictions of settling velocity based on fractal aggregate physical features in water treatment, Journal of Water Process Engineering 67, 106138 (2024)
2024
-
[31]
X. Song, Z. Xu, G. Li, Z. Pang, and Z. Zhu, A new model for predicting drag coefficient and settling velocity of spherical and non-spherical particle in newtonian fluid, Powder Technology 321, 242 (2017)
2017
-
[32]
C. R. Constante-Amores, A. J. Linot, and M. D. Graham, Enhancing predictive capabilities in data-driven dynamical modeling with automatic differentiation: Koopman and neural ODE approaches, Chaos 34, 043119 (2024). 26
2024
-
[33]
S. Qian, X. Qiao, W. Zhang, Z. Yu, S. Dong, and J. Feng, Machine learning-based prediction for settling velocity of microplastics with various shapes, Water Research 249, 121001 (2024)
2024
-
[34]
W. Lv, Z. Xu, X. Jia, S. Duan, J. Liu, and X. Song, Prediction of particle settling velocity in newtonian and power-law fluids using artificial neural network model, Applied Sciences 14, 826 (2024)
2024
-
[35]
L. S. Keren, T. Lazebnik, and A. Liberzon, Improved prediction of settling behavior of solid particles through machine learning analysis of experimental retention time data, International Journal of Multiphase Flow 172, 104716 (2024)
2024
-
[36]
S. L. Brunton, B. W. Brunton, J. L. Proctor, and J. N. Kutz, Koopman invariant subspaces and finite linear representations of nonlinear dynamical systems for control, PLOS ONE 11, 1 (2016)
2016
-
[37]
R. T. Q. Chen, Y. Rubanova, J. Bettencourt, and D. Duvenaud, Neural ordinary differential equations, arXiv:1806.07366 (2019)
2019 arXiv
-
[38]
A. J. Linot and M. D. Graham, Dynamics of a data-driven low-dimensional model of turbulent minimal Couette flow, J. Fluid Mech. 973, A42 (2023)
2023
-
[39]
A. J. Linot and M. D. Graham, Data-driven reduced-order modeling of spatiotemporal chaos with neural ordinary differential equations, Chaos 32, 073110 (2022)
2022
-
[40]
Vlachas, J
P. Vlachas, J. Pathak, B. Hunt, T. Sapsis, M. Girvan, E. Ott, and P. Koumoutsakos, Backprop- agation algorithms and reservoir computing in recurrent neural networks for the forecasting of complex spatiotemporal dynamics, Neural Networks 126, 191 (2020)
2020
-
[41]
C. R. Constante-Amores and M. D. Graham, Data-driven state-space and Koopman operator models of coherent state dynamics on invariant manifolds, J. Fluid Mech. 984, R9 (2024)
2024
-
[42]
C. R. Constante-Amores, A. J. Linot, and M. D. Graham, Data-driven prediction of large-scale spatiotemporal chaos with distributed low-dimensional models (2024), arXiv:2410.01238
2024 arXiv
-
[43]
Pathak, B
J. Pathak, B. Hunt, M. Girvan, Z. Lu, and E. Ott, Model-free prediction of large spatiotem- porally chaotic systems from data: A reservoir computing approach, Phys. Rev. Lett. 120, 024102 (2018)
2018
-
[44]
N. A. K. Doan, W. Polifke, and L. Magri, Short- and long-term predictions of chaotic flows and extreme events: a physics-constrained reservoir computing approach, Proc. R. Soc. A: Math. Phys. Eng. Sci 477, 20210135 (2021)
2021
-
[45]
H. Fan, J. Jiang, C. Zhang, X. Wang, and Y.-C. Lai, Long-term prediction of chaotic systems with machine learning, Phys. Rev. Res. 2, 012080 (2020)
2020
-
[46]
J. A. Platt, S. G. Penny, T. A. Smith, T.-C. Chen, and H. D. Abarbanel, A systematic exploration of reservoir computing for forecasting complex spatiotemporal dynamics, Neural Networks 153, 530 (2022)
2022
-
[47]
Racca and L
A. Racca and L. Magri, Robust optimization and validation of echo state networks for learning chaotic dynamics, Neural Networks 142, 252 (2021)
2021
-
[48]
I. J. Goodfellow, J. Pouget-Abadie, M. Mirza, B. Xu, D. Warde-Farley, S. Ozair, A. Courville, and Y. Bengio, Generative adversarial networks (2014), arXiv:1406.2661 [stat.ML]
2014 arXiv
-
[49]
Geneva and N
N. Geneva and N. Zabaras, Transformers for modeling physical systems, Neural Networks 146 (2021)
2021
-
[50]
Specifically, this control term is introduced as ¯Xt = ξ(t, Xt, χ(t); θξ), (10) where χ(t) is a controlled path and ξ is a neural network parameterized by weights θξ
which directly employs the control term inside of a single neural network defining the approximate equation of motion of the SDE. Specifically, this control term is introduced as ¯Xt = ξ(t, Xt, χ(t); θξ), (10) where χ(t) is a controlled path and ξ is a neural network parameter...
-
[51]
Gilpin, Model scale versus domain knowledge in statistical forecasting of chaotic systems, Phys
W. Gilpin, Model scale versus domain knowledge in statistical forecasting of chaotic systems, Phys. Rev. Res. 5, 043252 (2023)
2023
-
[52]
Ahmed, F
O. Ahmed, F. Tennie, and L. Magri, Prediction of chaotic dynamics and extreme events: A recurrence-free quantum reservoir computing approach (2024)
2024
-
[53]
S. Kang, J. L. Best, and L. P. Chamorro, On the dynamics of aligned inertial particles settling in a quiescent, stratified two-layer medium, J. Fluid. Mech. 988, A26 (2024)
2024
-
[54]
Zhang, A flexible new technique for camera calibration, IEEE Transactions on pattern analysis and machine intelligence 22, 1330 (2000)
Z. Zhang, A flexible new technique for camera calibration, IEEE Transactions on pattern analysis and machine intelligence 22, 1330 (2000). 27
2000
-
[55]
Paszke., PyTorch: An Imperative Style, High-Performance Deep Learning Library, NeurIPS 2019 32 (2019)
2019
-
[56]
Kidger, On neural differential equations (2022), arXiv:2202.02435 [cs.LG]
P. Kidger, On neural differential equations (2022), arXiv:2202.02435 [cs.LG]
2022 arXiv
-
[57]
Kidger, J
P. Kidger, J. Foster, X. Li, H. Oberhauser, and T. Lyons, Neural sdes as infinite-dimensional gans (2021), arXiv:2102.03657 [cs.LG]
2021 arXiv
-
[58]
Oh, D.-Y
Y. Oh, D.-Y. Lim, and S. Kim, Stable neural stochastic differential equations in analyzing irregular time series data (2025), arXiv:2402.14989 [cs.LG]
2025 arXiv
-
[59]
Morrill, P
J. Morrill, P. Kidger, L. Yang, and T. Lyons, Neural controlled differential equations for online prediction tasks (2021), arXiv:2106.11028 [cs.LG]
2021 arXiv
-
[60]
Kidger, J
P. Kidger, J. Morrill, J. Foster, and T. Lyons, Neural controlled differential equations for irregular time series, in Advances in Neural Information Processing Systems, Vol. 33, edited by H. Larochelle, M. Ranzato, R. Hadsell, M. Balcan, and H. Lin (Curran Associates, Inc.,
-
[61]
R. T. Q. Chen, J. Behrmann, D. Duvenaud, and J.-H. Jacobsen, Residual flows for invertible generative modeling (2020), arXiv:1906.02735
2020 arXiv
-
[62]
Virmaux and K
A. Virmaux and K. Scaman, Lipschitz regularity of deep neural networks: analysis and effi- cient estimation, in Advances in Neural Information Processing Systems, Vol. 31, edited by S. Bengio, H. Wallach, H. Larochelle, K. Grauman, N. Cesa-Bianchi, and R. Garnett (Curran Assoc...
2018
-
[63]
W. R. Goossens, A new explicit equation for the terminal velocity of a settling sphere, Powder Technology 362, 54 (2020). 28
2020
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.