Pith. sign in

REVIEW 6 major objections 5 minor 41 references

Using Machine Learning and Neural Networks to Analyze and Predict Chaos in Multi-Pendulum and Chaotic Systems

T0 review · 6 major / 5 minor · reviewed 2026-08-16 · deepseek-v4-flash

Pith's one-line read The paper claims that LSTM, GRU, and VRNN recurrent networks outperform classical machine-learning models at predicting multi-pendulum chaos, and that a time-step training approach can generalize to unseen initial angles in moderately…

desk verdict A student benchmark with a sensible time-step idea whose central generalization claim is contradicted by its own frictionless test and rescued only by switching to friction. read the letter →

arxiv 2504.13453 v1 pith:TTYBMCCO submitted 2025-04-18 cs.LG nlin.CDphysics.comp-ph

classification cs.LGnlin.CDphysics.comp-ph
keywords chaoticsystemsmulti-pendulumLSTMtime-seriespredictionODE-RK4Lyapunovexponentsrecurrentneuralnetworkstime-stepapproach
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper sets out to determine which of ten machine-learning models and neural networks can predict the chaotic motion of double- and triple-pendulum systems, using synthetic trajectories generated by fourth-order Runge-Kutta integration. Its central claim is that recurrent architectures, especially LSTM, with GRU and VRNN close behind, outperform classical regressors, and that a time-step based approach can generalize to unseen initial angles in moderately chaotic, friction-damped scenarios. The paper's motivation is that chaotic systems govern weather, disease, and financial markets, so a model that predicts them cheaply would be broadly useful. A sympathetic reading is that the ranking is reliable for short-horizon, low-dimensional, noise-free pendulum data; the same data also show that the sliding-window method is not truly predicting chaos.

What carries the argument

The central mechanism is the time-step based approach: train on 30 trajectories with initial angles $[120^\circ, 0^\circ]$ through $[120^\circ, 3.0^\circ]$ in $0.1^\circ$ increments, feed the time step as an input feature along with the initial angle, and then test on an untrained in-between angle such as $[120^\circ, 2.05^\circ]$. This turns prediction into an interpolation problem over initial-condition space rather than pure time-series extrapolation. It is carried by gated recurrent architectures, with LSTM's forget and input gates and GRU's update and reset gates credited for retaining the temporal information needed for chaotic dynamics while ignoring irrelevant fluctuations. The ODE-RK4 solver supplies the ground-truth trajectories, and Lyapunov-exponent and eigenvalue analyses are used to identify which initial-condition regions are truly chaotic and therefore harder to predict.

What would settle it

Run the paper's frictionless time-step protocol exactly: train ten models on double-pendulum trajectories for initial angles $[120^\circ, 0^\circ]$ through $[120^\circ, 3.0^\circ]$ in $0.1^\circ$ steps, with 2,000 steps per angle, then test on $[120^\circ, 2.05^\circ]$ and record LSTM RMSE. If the RMSE is near 0.26 with $R^2 \approx 0.23$, the generalization claim fails outside the damped regime; if it is near the friction-case value of $1.5\times10^{-2}$ with $R^2 \approx 0.996$, the claim stands. A complementary check is to compute the Lyapunov exponent for the unseen angle and see whether all failures occur where the exponent is positive.

Watch

Extended reading notes

Core claim

On its own terms, the paper claims an empirical hierarchy: LSTM is the best model for the double pendulum in both the sliding-window and time-step approaches, with and without friction, reaching $R^2 = 0.998$ with RMSE $1.4\times10^{-2}$ in the sliding-window baseline and $R^2 = 0.991$ with RMSE $2.7\times10^{-2}$ on a trained angle in the time-step approach. For the triple pendulum, VRNN wins the sliding-window test, GRU wins the time-step test, and LSTM is best when friction is added. The paper's global conclusion is that LSTM can successfully predict chaotic systems with up to three features, including initial angles it has never seen, provided the chaos is moderate or damped. The frictionless test on the unseen angle is reported as a failure, with LSTM RMSE 0.26 and $R^2 = 0.23$, so the generalization claim is explicitly limited to reasonably chaotic scenarios.

Load-bearing premise

The paper's generalization claim rests on the assumption that a model trained on trajectories from discrete initial angles can interpolate to an untrained in-between angle even though chaotic systems amplify tiny differences in initial conditions; the paper's own frictionless test of this assumption fails, with LSTM RMSE 0.26 and $R^2 = 0.23$, so the assumption holds only for damped, moderately chaotic cases.

Editorial extensions

If this is right

  • For low-dimensional, friction-damped mechanical systems, LSTM is the first model to try, with GRU and VRNN as close alternatives.
  • The time-step approach allows full-interval trajectory visualization and testing on unseen initial angles, which the sliding-window approach cannot do.
  • The sliding-window approach should not be used as evidence about chaos prediction, since the paper finds it merely fits an erratic curve.
  • Models built on linear dependencies, such as autoregressive and feed-forward networks, are poor choices for chaotic dynamics.
  • Prediction quality degrades as the number of coupled variables grows: double-pendulum results are stronger than triple-pendulum results.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • One consequence the authors leave implicit is that the in-between prediction task is only well-posed when the prediction horizon is short relative to the Lyapunov time; the frictionless failure with RMSE 0.26 is exactly what exponential divergence predicts, so the method's boundary could be stated in Lyapunov units.
  • A testable extension is to apply the same time-step protocol to other low-dimensional chaotic systems, such as the Lorenz or Rössler systems, and see whether LSTM retains the top ranking when the initial-condition grid is varied.
  • Because all models shared identical hyperparameters, the reported ranking is an upper bound on what tuned versions of each architecture might achieve; per-model tuning could plausibly change the ordering.
  • The paper's own Lyapunov heatmap could be turned into a quantitative predictor of model error by regressing RMSE on the local Lyapunov exponent to find the threshold separating predictable from unpredictable initial conditions.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

6 major / 5 minor

Summary. The paper evaluates ten machine learning and neural network models on synthetic double- and triple-pendulum trajectories generated with ODE-RK4. It first uses a single-step sliding-window approach and then proposes a 'time-step based approach' in which models are trained on trajectories at many initial angles and tested on an untrained 'in-between' angle (e.g., [120°, 2.05°]). The authors report RMSE and R² for frictionless and friction-damped systems, analyze chaoticity with Lyapunov exponents and eigenvalues, and conclude that LSTM best predicts chaotic systems with up to three features, with GRU and VRNN also performing well. The paper's central contribution is the claimed ability to generalize across initial angles in the time-step approach.

Significance. If the central claim were established, a reliable model ranking for predicting multi-pendulum trajectories at unseen initial angles would be a useful empirical contribution to machine learning for chaotic systems. The paper also offers a reproducible synthetic-data pipeline and openly states several limitations, including the noise-free simulation setting and uniform hyperparameters. However, the current evidence does not support the central generalization claim: the only frictionless in-between test fails, the friction-based success depends on damping equations that are never specified, results are single-run without uncertainty quantification, and the triple-pendulum equations contain unresolved symbolic placeholders. The significance of the work is therefore contingent on corrections that go beyond local presentation issues.

major comments (6)
  1. [§2, '10,000,000 synthetic data points'] The dataset size is internally inconsistent. A time interval from 0 to 1000 seconds at step size 0.001 yields 10^6 steps, not the stated 10^7 data points. Later in the same section, 10 seconds at step 0.001 yields 10,000 steps per trajectory, not the stated 2,000 data points per initial angle. Since the training/test split and the reported RMSE values depend on these counts, the experimental setup needs to be restated correctly and rerun if the reported counts are wrong.
  2. [§2.2 and §3.2, in-between angle test] The central generalization claim is contradicted by the paper's own frictionless result: the LSTM, the best model in the authors' ranking, achieves RMSE 0.26 and R² 0.23 on the unseen initial angle [120°, 2.05°] (Section 3.2, Figure 14B). This is essentially no predictive skill. The paper then switches to the friction-damped system and reports success there, but the frictionless failure is the direct test of the time-step approach as defined in Section 2.2. The Discussion's claim that LSTM predicts 'even ones it hasn't seen before' is supported only by a damped system whose equations are never given and by a single interpolation point without repeated trials.
  3. [§3.1, friction implementation] The friction model is not reproducible. The text says friction was introduced 'through the use of a damping constant, damping1 for the first pendulum, and damping2 for the second pendulum,' but the modified equations of motion and the numerical values of damping1 and damping2 are never provided. Without these, the friction-based results in Figures 12, 13, 15, and 16 cannot be verified or compared against the frictionless results.
  4. [§1, triple pendulum equations] The triple pendulum equations contain unresolved symbolic placeholders such as 'od1_1 ⋅ od1_2 ⋅ od1_3 ⋅ r2−4' and 'od3_3'. These are not mathematical equations. As a result, the triple-pendulum trajectory data cannot be reproduced or checked, and the triple-pendulum model rankings in Section 3.3 rest on an unverifiable simulation.
  5. [§3.3 and §4, numerical inconsistencies] The reported metrics for the triple pendulum are mutually inconsistent. In Section 3.3 the GRU on the time-step frictionless test has RMSE 1.688E-1, while the Conclusion reports RMSE 1.688E-2; for the friction in-between test Section 3.3 reports R² 0.98823 and RMSE 9.112E-3, while the Conclusion reports R² 0.99909 and RMSE 6.497E-3. These are not round-off differences. Because all metrics appear to be single-run values without seeds or error bars, the model ranking is unreliable even for the experiments that are described.
  6. [§3.5, Discussion claims] The Discussion states that 'LSTM was the best model to successfully predict chaotic systems with up to 3 features, even ones it hasn't seen before in moderately chaotic scenarios,' but the results in Section 3.3 name GRU as the best triple-pendulum model in the time-step approach, and the abstract says LSTM was best for triple pendulum with friction. The claim is also not qualified by the paper's own limitation statements about uniform hyperparameters and noise-free data. The conclusion overreaches the presented evidence.
minor comments (5)
  1. [§2, initial conditions list] The initial conditions list in Section 2 repeats 'm1 = 1 kg' twice and omits m2; this is likely a typographical error that should be corrected.
  2. [Figure 6 caption] The caption for Figure 6A says the time interval is (0, 100) while the body text and Figure 6B refer to (0, 1000); the interval should be stated consistently.
  3. [§3.5, GRU description] The Discussion describes GRU as a 'Convolutional Neural Network'; GRU is a gated recurrent architecture, not a convolutional network. This misclassification should be corrected.
  4. [References] Reference [17] appears twice with different titles, and several in-text citations (e.g., the 'score of' in the Introduction and the '(citation needed)' in Section 2) are incomplete placeholders.
  5. [Throughout] Several figure captions and section headings mix up 'trained angle' and 'untrained angle' (e.g., Figure 16A and 16B captions contradict the text). The captions should be checked against the reported experiments.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the time-step holdout test is a genuine out-of-sample interpolation, and the paper's own failed frictionless result confirms predictions are not forced by construction.

full rationale

The paper's central contribution is an empirical model comparison: train several ML models on simulated double- and triple-pendulum trajectories and evaluate on metrics such as RMSE and R^2. The time-step based approach trains on trajectories with initial angles [120°, 0°], [120°, 0.1°], ..., [120°, 3.0°] and then tests on an untrained 'in-between' angle [120°, 2.05°]. This is a genuine holdout along the initial-angle dimension: the test trajectory is not used in fitting, and no fitted parameter or model output is constructed to equal the test labels. The paper's own frictionless result for this holdout is poor (LSTM RMSE of 0.26 and R^2 of 0.23), which is strong evidence that the test is not circular; a setup where the prediction were equivalent to the input by construction would guarantee a near-perfect match. The later switch to friction-damped systems and the discussion claim that LSTM generalizes are empirical claims, not identities derived from the inputs. There are no load-bearing self-citations, no imported uniqueness theorems, and no ansatz smuggled in through prior work by the same authors. The equations of motion are standard ODE-RK4 solutions cited from external sources. The manuscript's internal inconsistencies, such as the triple-pendulum GRU RMSE differing between Section 3.3 (1.688E-1) and the Conclusion (1.688E-2), and the unsupported statement that LSTM was best for systems 'with up to 3 features' despite the triple-pendulum results favoring GRU, are correctness and reporting concerns, not circularity. Because no predicted quantity reduces by construction to a fitted parameter or to a self-citation chain, the circularity score is 0.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

The core empirical claims rest on simulated data generated by RK4 integration, on the correctness of equations adopted from cited sources, on unspecified damping and hyperparameter choices, and on the assumption that training on a 0.1-degree-spaced grid of initial angles permits prediction at an intermediate angle in a chaotic system. None of these are derived in the paper; they are inputs. No new entities are postulated.

free parameters (4)
  • Damping constants for friction = Not reported in the paper.
    The friction-based results, which drive the main success claims, depend on unspecified damping coefficients introduced into the differential equations. No equation form or value is given.
  • Uniform model hyperparameters = Not reported in the paper.
    The paper states all models shared identical hyperparameters with Adam and minimum learning rate 1e-4, but layers, hidden sizes, sequence lengths, epochs, batch size, and regularization are not given. Rankings may change with tuning.
  • RK4 integration step size and interval = h = 0.001, intervals 1000 s and 10 s.
    Chosen by hand to balance computational cost and chaos development; these choices determine the data generating process and therefore all reported metrics.
  • Initial angle training grid for time-step approach = For double pendulum: theta2 from 0 to 3 degrees in 0.1 degree steps; for triple pendulum: theta3 from 0.1 to 3 degrees…
    The grid defines the 'in-between' interpolation problem. The choice of 0.1 degree spacing is asserted to give the most predictable deviation without evidence.
assumptions (4)
  • domain assumption The multi-pendulum equations of motion from cloud4science and Yesilyurt are correct and complete.
    The paper does not derive the equations; the double pendulum equations are displayed with formatting errors, and the triple pendulum equations contain unresolved variables. Referenced in Section 2 and Figure 2.
  • standard math RK4 numerical integration with step size 0.001 produces ground-truth trajectories suitable for training and evaluation.
    RK4 is a standard method, but no convergence check or validation against an independent solver is provided. This is the training target for all models.
  • ad hoc to paper A model trained on trajectories at 0.1 degree intervals can predict a trajectory at an unobserved intermediate initial angle within 10 seconds.
    This is the core assumption of the time-step approach in Section 2.2. The system is chaotic, so this interpolation is not guaranteed. The frictionless result for [120, 2.05] degrees violates the assumption, with LSTM RMSE 0.26 and R2 0.23.
  • standard math MinMax scaling and normalization preserve the temporal structure needed for prediction.
    Scaling is a monotone transform per feature and is standard, but the paper does not describe what was scaled or how inverse transforms were applied to RMSE values.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Using Machine Learning and Neural Networks to Analyze and Predict Chaos in Multi-Pendulum and Chaotic Systems." pith.science (2026). https://pith.science/paper/TTYBMCCO

@misc{pith2026250413453,
  author       = {Pith},
  title        = {Pith review of: Using Machine Learning and Neural Networks to Analyze and Predict Chaos in Multi-Pendulum and Chaotic Systems},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/TTYBMCCO}},
  note         = {Machine review of arXiv:2504.13453}
}
read the original abstract

A chaotic system is a highly volatile system characterized by its sensitive dependence on initial conditions and outside factors. Chaotic systems are prevalent throughout the world today: in weather patterns, disease outbreaks, and even financial markets. Chaotic systems are seen in every field of science and humanities, so being able to predict these systems is greatly beneficial to society. In this study, we evaluate 10 different machine learning models and neural networks [1] based on Root Mean Squared Error (RMSE) and R^2 values for their ability to predict one of these systems, the multi-pendulum. We begin by generating synthetic data representing the angles of the pendulum over time using the Runge Kutta Method for solving 4th Order Differential Equations (ODE-RK4) [2]. At first, we used the single-step sliding window approach, predicting the 50st step after training for steps 0-49 and so forth. However, to more accurately cover chaotic motion and behavior in these systems, we transitioned to a time-step based approach. Here, we trained the model/network on many initial angles and tested it on a completely new set of initial angles, or 'in-between' to capture chaotic motion to its fullest extent. We also evaluated the stability of the system using Lyapunov exponents. We concluded that for a double pendulum, the best model was the Long Short Term Memory Network (LSTM)[3] for the sliding window and time step approaches in both friction and frictionless scenarios. For triple pendulum, the Vanilla Recurrent Neural Network (VRNN)[4] was the best for the sliding window and Gated Recurrent Network (GRU) [5] was the best for the time step approach, but for friction, LSTM was the best.

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

41 extracted references · 30 canonical work pages

  1. [1]

    Neural Networks - Architecture . (n.d.). Cs.stanford.edu. https://cs.stanford.edu/people/eroberts/courses/soco/projects/neural-networks/Architecture /feedforward.html

  2. [2]

    Runge-Kutta Method - an overview | ScienceDirect Topics . (n.d.). Www.sciencedirect.com. https://www.sciencedirect.com/topics/mathematics/runge-kutta-method

  3. [3]

    (2019, January 16)

    Deep Learning | Introduction to Long Short Term Memory . (2019, January 16). GeeksforGeeks. https://www.geeksforgeeks.org/deep-learning-introduction-to-long-short-term-memory/

  4. [4]

    RNN — PyTorch 2.0 documentation . (n.d.). Pytorch.org. https://pytorch.org/docs/stable/generated/torch.nn.RNN.html

  5. [5]

    Shen, G., Tan, Q., Zhang, H., Zeng, P., & Xu, J. (2018). Deep Learning with Gated Recurrent Unit Networks for Financial Sequence Predictions. Procedia Computer Science , 131 , 895–903. https://doi.org/10.1016/j.procs.2018.04.298

  6. [6]

    Bishop, R. (2015). Chaos (Stanford Encyclopedia of Philosophy) . Stanford.edu. https://plato.stanford.edu/entries/chaos/

  7. [7]

    (2021, December 14)

    Climate of chaos: Why warming makes weather less predictable | Stanford Doerr School of Sustainability . (2021, December 14). Sustainability.stanford.edu. https://sustainability.stanford.edu/news/climate-chaos-why-warming-makes-weather-less- predictable

  8. [8]

    P., & Ahmet Erdemir

    Halloran, J. P., & Ahmet Erdemir. (2011). Adaptive Surrogate Modeling for Expedited Estimation of Nonlinear Tissue Properties Through Inverse Finite Element Analysis. Annals of Biomedical Engineering , 39 (9), 2388–2397. https://doi.org/10.1007/s10439-011-0317-2

Show all 41 references
  1. [10]

    Sensitivity to Initial Conditions in Chaos - Wolfram Demonstrations Project . (n.d.). Demonstrations.wolfram.com. https://demonstrations.wolfram.com/SensitivityToInitialConditionsInChaos/

  2. [11]

    Time Series Prediction by Chaotic Modeling of Nonlinear Dynamical Systems

    Arslan Basharat, and Mubarak Shah. Time Series Prediction by Chaotic Modeling of Nonlinear Dynamical Systems . 1 Sept. 2009, https://doi.org/10.1109/iccv.2009.5459429

  3. [12]

    (2024, March 14)

    Flight chaos made worse by engineer delay, report finds. (2024, March 14). Www.bbc.com . https://www.bbc.com/news/business-68563068

  4. [13]

    LSTM — PyTorch 2.5 documentation . (2023). Pytorch.org. https://pytorch.org/docs/stable/generated/torch.nn.LSTM.html

  5. [14]

    Jain, H., Ranjan, A., & Gupta, K. (2013). Analysis of Chaos in Double Pendulum . 26 , 171–176. https://doi.org/10.1109/icetet.2013.50

  6. [15]

    (2021, February 28)

    cloud4science. (2021, February 28). Deep Learning with Real Data and the Chaotic Double Pendulum . Cloud Computing for Science and Engineering. https://cloud4scieng.org/2021/02/28/deep-learning-with-real-data-and-the-chaotic-double-p endulum/

  7. [16]

    Motion of a Triple Rod Pendulum

    (2019). Motion of a Triple Rod Pendulum . Authorea. https://www.authorea.com/users/259349/articles/412491-motion-of-a-triple-rod-pendulum

  8. [17]

    Boran Yesilyurt. (2019). Equations of Motion Formulation of a Pendulum Containing N-point Masses. ArXiv (Cornell University) . https://doi.org/10.48550/arxiv.1910.12610

  9. [18]

    An Analytical, Numerical and Experimental Study of the Double Pendulum

    D’Alessio, Serge. “An Analytical, Numerical and Experimental Study of the Double Pendulum.” European Journal of Physics , vol. 44, no. 1, 3 Nov. 2022, p. 015002, https://doi.org/10.1088/1361-6404/ac986b

  10. [19]

    numpy.array — NumPy v2.1 Manual . (2024). Numpy.org. https://numpy.org/doc/2.1/reference/generated/numpy.array.html

  11. [20]

    (2024, June 18)

    Deep Learning . (2024, June 18). MIT Press. https://mitpress.mit.edu/9780262035613/deep-learning/ [17] Liang, B., Li, T., Chen, Z., Wang, Y., & Liao, Y. (2018). Robot Arm Dynamics Control Based on Deep Learning and Physical Simulation . https://doi.org/10.23919/chicc.2018.8484058

  12. [21]

    Klinkachorn, S., & Parmar, J. (n.d.). Evaluating Current Machine Learning Techniques On Predicting Chaotic Systems . https://cs229.stanford.edu/proj2019spr/report/38.pdf

  13. [22]

    APPROACHING NONLINEAR DYNAMICS by STUDYING the MOTION of a PENDULUM III: PREDICTABILITY and CONTROL of CHAOTIC MOTION

    HÜBINGER, B., et al. “APPROACHING NONLINEAR DYNAMICS by STUDYING the MOTION of a PENDULUM III: PREDICTABILITY and CONTROL of CHAOTIC MOTION.” International Journal of Bifurcation and Chaos , vol. 04, no. 04, Aug. 1994, pp. 773–784, https://doi.org/10.1142/s0218127494000575

  14. [23]

    A Systematic Review on Overfitting Control in Shallow and Deep Neural Networks

    Binghamton University, State University of New York. (2024). Lyapunov Exponent. In Introduction to the Modeling and Analysis of Complex_Systems. https://math.libretexts.org/@go/page/7819 [24] Bejani, Mohammad Mahdi, and Mehdi Ghatee. “A Systematic Review on Overfitting Control...

  15. [25]

    sklearn.ensemble.RandomForestClassifier — scikit-learn 0.20.3 documentation . (2018). Scikit-Learn.org. https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.RandomForestClassifier. html

  16. [26]

    sklearn.neural_network.MLPRegressor — scikit-learn 0.21.3 documentation . (2010). Scikit-Learn.org. https://scikit-learn.org/stable/modules/generated/sklearn.neural_network.MLPRegressor.ht ml

  17. [27]

    (2023, June 8)

    Bidirectional Recurrent Neural Network . (2023, June 8). GeeksforGeeks. https://www.geeksforgeeks.org/bidirectional-recurrent-neural-network/

  18. [28]

    SGDRegressor . (2024). Scikit-Learn. https://scikit-learn.org/1.5/modules/generated/sklearn.linear_model.SGDRegressor.html

  19. [29]

    Autoregressive Model - an overview | ScienceDirect Topics . (n.d.). Www.sciencedirect.com. https://www.sciencedirect.com/topics/mathematics/autoregressive-model

  20. [30]

    Analysis of the Application Efficiency of TensorFlow and PyTorch in Convolutional Neural Network

    Novac, Ovidiu-Constantin, et al. “Analysis of the Application Efficiency of TensorFlow and PyTorch in Convolutional Neural Network.” Sensors , vol. 22, no. 22, 16 Nov. 2022, p. 8872, https://doi.org/10.3390/s22228872

  21. [31]

    Chu, C.-S. J. (1995). Time series segmentation: A sliding window approach. Information Sciences , 85 (1-3), 147–173. https://doi.org/10.1016/0020-0255(95)00021-g

  22. [32]

    N., & Brunton, S

    Kaiser, E., Kutz, J. N., & Brunton, S. L. (2018). Sparse identification of nonlinear dynamics for model predictive control in the low-data limit. Proceedings of the Royal Society a Mathematical Physical and Engineering Sciences , 474 (2219), 20180335–20180335. https://doi.org/...

  23. [33]

    Cai, Y., Zhao, R., Wang, H., Chen, L., Lian, Y., & Zhong, Y. (2023). CNN-LSTM Driving Style Classification Model Based on Driver Operation Time Series Data. IEEE Access , 11 , 16203–16212. https://doi.org/10.1109/access.2023.3245146

  24. [34]

    O., Olaya, A

    Laguna, J. O., Olaya, A. G., & Borrajo, D. (2011). A Dynamic Sliding Window Approach for Activity Recognition. Lecture Notes in Computer Science , 219–230. https://doi.org/10.1007/978-3-642-22362-4_19

  25. [35]

    Sensitive Dependence on Initial Conditions between Dynamical Systems and Their Induced Hyperspace Dynamical Systems

    Wang, Yangeng, et al. “Sensitive Dependence on Initial Conditions between Dynamical Systems and Their Induced Hyperspace Dynamical Systems.” Topology and Its Applications , vol. 156, no. 4, Feb. 2009, pp. 803–811, https://doi.org/10.1016/j.topol.2008.10.014

  26. [36]

    Making Sense of Data II

    “Making Sense of Data II.” Google Books , 2024, books.google.com/books?hl=en&lr=&id=kbrIAgAAQBAJ&oi=fnd&pg=PA19&dq=which +allows+the+model+to+predict+for+a+specific+point+in+time

  27. [37]

    Sangiorgio, M., Dercole, F., & Giorgio Guariso. (2021). Deep Learning in Multi-step Prediction of Chaotic Dynamics. SpringerLink . https://doi.org/10.1007-978-3-030-94482-7

  28. [38]

    Chaos and Regularity in the Double Pendulum with Lagrangian Descriptors

    Jiménez-López, Javier, and Víctor J García-Garrido. “Chaos and Regularity in the Double Pendulum with Lagrangian Descriptors.” International Journal of Bifurcation and Chaos , 28 Nov. 2024, https://doi.org/10.1142/s0218127424502018

  29. [39]

    Chattopadhyay, A., Hassanzadeh, P., & Subramanian, D. (2020). Data-driven predictions of a multiscale Lorenz 96 chaotic system using machine-learning methods: reservoir computing, artificial neural network, and long short-term memory network. Nonlinear Processes in Geophysics ...

  30. [40]

    On the Complexity of Neural Network Classifiers: A Comparison between Shallow and Deep Architectures

    Deep Learning . (2016). Deeplearningbook.org. https://www.deeplearningbook.org/ [41] Bianchini, Monica, and Franco Scarselli. “On the Complexity of Neural Network Classifiers: A Comparison between Shallow and Deep Architectures.” IEEE Transactions on Neural Networks and Learni...

  31. [42]

    University of Michigan. (2024). Using eigenvalues and eigenvectors to find stability and solve ODEs . In Chemical Process Dynamics and Controls . https://eng.libretexts.org/@go/page/22502 [43] Étienne Ghys. (2013). The Lorenz Attractor, a Paradigm for Chaos. Progress in Mathem...

  32. [44]

    Igor Klioutchnikov, Mariia Sigova, & Beizerov, N. (2017). Chaos Theory in Finance. Procedia Computer Science , 119 , 368–375. https://doi.org/10.1016/j.procs.2017.11.196

  33. [45]

    J., & M, S

    S, P. J., & M, S. A. (2024). Nonlinear Dynamics and Chaos: Applications for Prediction of Weather and Climate . ArXiv.org. https://arxiv.org/abs/physics/0104056

Pith tools

Reviewed August 16, 2026 · model on record in the stance chip above.