[New Book] Click to get The Beginner's Guide to Data Science!
Use the offer code 20offearlybird to get 20% off. Hurry, sale ends soon!

On the Suitability of Long Short-Term Memory Networks for Time Series Forecasting

Long Short-Term Memory (LSTM) is a type of recurrent neural network that can learn the order dependence between items in a sequence.

LSTMs have the promise of being able to learn the context required to make predictions in time series forecasting problems, rather than having this context pre-specified and fixed.

Given the promise, there is some doubt as to whether LSTMs are appropriate for time series forecasting.

In this post, we will look at the application of LSTMs to time series forecasting by some of the leading developers of the technique.

Kick-start your project with my new book Deep Learning for Time Series Forecasting, including step-by-step tutorials and the Python source code files for all examples.

Let’s get started.

On the Suitability of Long Short-Term Memory Networks for Time Series Forecasting

On the Suitability of Long Short-Term Memory Networks for Time Series Forecasting
Photo by becosky, some rights reserved.

LSTM for Time Series Forecasting

We will take a closer look at a paper that seeks to explore the suitability of LSTMs for time series forecasting.

The paper is titled “Applying LSTM to Time Series Predictable through Time-Window Approaches” (get the PDF, Gers, Eck and Schmidhuber, published in 2001.

They start off by commenting that univariate time series forecasting problems are actually simpler than the types of problems traditionally used to demonstrate the capabilities of LSTMs.

Time series benchmark problems found in the literature … are often conceptually simpler than many tasks already solved by LSTM. They often do not require RNNs at all, because all relevant information about the next event is conveyed by a few recent events contained within a small time window.

The paper focuses on the application of LSTMs to two complex time series forecasting problems and contrasting the results of LSTMs to other types of neural networks.

The focus of the study are two classical time series problems:

Mackey-Glass Series

This is a contrived time series calculated from a differential equation.

Plot of the Mackey-Glass Series, Taken from Schoarpedia

Plot of the Mackey-Glass Series, Taken from Schoarpedia

For more information, see:

Chaotic Laser Data (Set A)

This is a series taken from a from a contest at the Santa Fe Institute.

Set A is defined as:

A clean physics laboratory experiment. 1,000 points of the fluctuations in a far-infrared laser, approximately described by three coupled nonlinear ordinary differential equations.

Example of Chaotic Laser Data (Set A), Taken from The Future of Time Series

Example of Chaotic Laser Data (Set A), Taken from The Future of Time Series

For more information, see:

Need help with Deep Learning for Time Series?

Take my free 7-day email crash course now (with sample code).

Click to sign-up and also get a free PDF Ebook version of the course.

Autoregression

An autoregression (AR) approach was used to model these problems.

This means that the next time step was taken as a function of some number of past (or lag) observations.

This is a common approach for classical statistical time series forecasting.

The LSTM is exposed to one input at a time with no fixed set of lag variables, as the windowed-multilayer Perceptron (MLP).

For more information on AR for time series, see the post:

Analysis of Results

Some of the more salient comments were in response to the poor results of the LSTMs on the Mackey-Glass Series problem.

First, they comment that increasing the learning capacity of the network did not help:

Increasing the number of memory blocks did not significantly improve the results.

This may have required a further increase in the number of training epochs. It is also possible that a stack of LSTMs may have improved results.

They comment that in order to do well on the Mackey-Glass Series, the LSTM is required to remember recent past observations, whereas the MLP is given this data explicitly.

The results for the AR-LSTM approach are clearly worse than the results for the time window approaches, for example with MLPs. The AR-LSTM network does not have access to the past as part of its input … [for the LSTM to do well] required remembering one or two events from the past, then using this information before over-writing the same memory cells.

They comment that in general, this poses more of a challenge for LSTMs and RNNs than it does for MLPs.

Assuming that any dynamic model needs all inputs from t-tau …, we note that the AR-RNN has to store all inputs from t-tau to t and overwrite them at the adequate time. This requires the implementation of a circular buffer, a structure quite difficult for an RNN to simulate.

Again, I can’t help but think that a much larger hidden layer (more memory units) and a much deeper network (stacked LSTMs) would be better suited to learn multiple past observations.

They later conclude the paper and discuss that based on the results, LSTMs may not be suited to AR type formulations of time series forecasting, at least when the lagged observations are close to the time being forecasted.

This is a fair conclusion given the LSTMs performance compared to MLPs on the tested univariate problems.

A time window based MLP outperformed the LSTM pure-AR approach on certain time series prediction benchmarks solvable by looking at a few recent inputs only. Thus LSTM’s special strength, namely, to learn to remember single events for very long, unknown time periods, was not necessary here.

LSTM learned to tune into the fundamental oscillation of each series but was unable to accurately follow the signal.

They do highlight the LSTMs ability to learn oscillation behavior (e.g. cycles or seasonality).

Our results suggest to use LSTM only on tasks where traditional time window-based approaches must fail.

LSTM’s ability to track slow oscillations in the chaotic signal may be applicable to cognitive domains such as rhythm detection in speech and music.

This is interesting, but perhaps not as useful, as such patterns are often explicitly removed wherever possible prior to forecasting. Nevertheless, it may highlight the possibility of LSTMs learning to forecast in the context of a non-stationary series.

Final Word

So, what does all of this mean?

Taken at face value, we may conclude that LSTMs are unsuitable for AR-based univariate time series forecasting. That we should turn first to MLPs with a fixed window and only to LSTMs if MLPs cannot achieve a good result.

This sounds fair.

I would argue a few points that should be considered before we write-off LSTMs for time series forecasting:

  • Consider more sophisticated data preparation, such as at least scaling and stationarity. If a cycle or trend is obvious, then it should be removed so that the model can focus on the underlying signal. That being said, the capability of LSTMs to perform well on non-stationary data as well or better than other methods is intriguing, but I would expect would be commensurate with an increase in required network capacity and training.
  • Consider the use of both larger models and hierarchical models (stacked LSTMs) to automatically learn (or “remember”) a larger temporal dependence. Larger models can learn more.
  • Consider fitting the model for much longer, e.g. thousands or hundreds of thousands of epochs, whilst making use of regularization techniques. LSTMs take a long time to learn complex dependencies.

I won’t point out that we can move beyond AR based models; it’s obvious, and AR models are a nice clean proving ground for LSTMs to consider and take on classical statistical methods like ARIMA and well performing neural nets like window MLPs.

I believe there’s great promise and opportunity for LSTMs applied to the problem of time series forecasting.

Do you agree?
Let me know in the comments below.

Develop Deep Learning models for Time Series Today!

Deep Learning for Time Series Forecasting

Develop Your Own Forecasting models in Minutes

...with just a few lines of python code

Discover how in my new Ebook:
Deep Learning for Time Series Forecasting

It provides self-study tutorials on topics like:
CNNs, LSTMs, Multivariate Forecasting, Multi-Step Forecasting and much more...

Finally Bring Deep Learning to your Time Series Forecasting Projects

Skip the Academics. Just Results.

See What's Inside

90 Responses to On the Suitability of Long Short-Term Memory Networks for Time Series Forecasting

  1. Avatar
    Colby May 26, 2017 at 2:53 pm #

    Jason,

    Do you have any recommendations/posts to example implementations of LSTM for time series prediction?

    • Avatar
      Jason Brownlee June 2, 2017 at 11:53 am #

      Yes, many posts. Please use the search feature.

      • Avatar
        Anurima July 1, 2020 at 10:09 pm #

        Hi Jason, would it be appropriate to fit LSTM when there are somewhere between 240-260 data points?

  2. Avatar
    Phillip May 28, 2017 at 8:53 am #

    Thank you for this informative article. While I have not trained any LSTM RNNs on my time series data, I’ve found that plain jane feed forward DNNs that are feature engineered correctly and use sliding window CV predicts OOS as expected. Essentially, it is not necessary for my data to have to mess with LSTMs at all. And my features aren’t all iid…

    I suppose this illustrates the versatility of DNNs.

    • Avatar
      Jason Brownlee June 2, 2017 at 12:08 pm #

      I generally agree Phillip.

      MLPs with a window do very well on small time series forecasting problems.

      • Avatar
        sena April 10, 2020 at 6:40 pm #

        hi,
        but how do you define a “small” time series forecasting problem?

        • Avatar
          Jason Brownlee April 11, 2020 at 6:12 am #

          Perhaps hundreds to thousands of observations, perhaps one variate.

  3. Avatar
    Gerrit Govaerts May 29, 2017 at 5:09 pm #

    I agree that along with MLP’s , LSTM’s have an advantage over more classical statistical approaches like ARIMA : they can fit non-linear functions and moreover , you do not need to specify the type of non-linearity . There also lies the danger : regularisation is absolutely crucial to avoid overfitting .
    I still hold on to my position that a lot of very interesting time series will never be cracked by any approach that only looks at past data points to forecast the next : prices are set where demand meets supply and both supply and demand care nothing about yesterday’s price .

  4. Avatar
    Jay May 31, 2017 at 5:26 am #

    I found that for the problem I’m working on (forecasting streamflow based on hydrometric station water level measurements), to my surprise, first differencing of the signal prior to LSTM worsened the results. Overall, I find that I can’t improve over a persistence model with LSTM or an MLP using a moving window. Not sure what to try next… (same problem with ARIMA)

  5. Avatar
    Atanas June 1, 2017 at 7:46 am #

    Great discussion,

    LSTMs are much newer/younger to solve /simpler/ AR problems – most industries have already been studying and improving custom models applied on such tasks for decades. I believe RNNs shine for multivariate time series forecasts, that have been simply too difficult to model until now. Similarly with MLPs and multivariate time series models where the different features can have different forecasting powers(ie the sentiment of twitter posts can have influence for a day or two, while ny times articles could have a much longer lasting influence).

  6. Avatar
    Anthony June 7, 2017 at 1:04 am #

    Why use data hungry algorithm like lstm when similar results can be obtained using a machine learning or time series methods?

  7. Avatar
    neha March 4, 2018 at 12:46 am #

    how to work on many to one time series using LSTM?Any link with example code

  8. Avatar
    neha March 4, 2018 at 9:24 pm #

    how to work on multiple seasonality data with lstm?

    • Avatar
      Jason Brownlee March 5, 2018 at 6:23 am #

      Perhaps try seasonal adjusting the data prior to modeling.

      • Avatar
        neha March 6, 2018 at 12:45 am #

        so can i use many to one here?or say differing time steps?

      • Avatar
        neha March 6, 2018 at 5:19 am #

        what do you mean by seasonal adjustment?if i have monthly and annually seasonality?i have taken monthly size for taking care of monthly effect.For annual part if i take it then how to merge both approaches and get a single output?

  9. Avatar
    Cloudy March 18, 2018 at 11:24 pm #

    Hi Ph.D Jason,
    I have multivariate time series with unevenly spaced observations. Can I use LSTM for the time series data like that. Need I transform my data into equally spaced time series data?
    Thank you

    • Avatar
      Jason Brownlee March 19, 2018 at 6:07 am #

      Perhaps try as-is and resampled and compare model performance.

  10. Avatar
    Chris J March 24, 2018 at 10:42 pm #

    Here is a paper on successful use of lstm models for time series prediction:

    “We deploy LSTM networks for predicting out-of-sample directional movements for the
    constituent stocks of the S&P 500 from 1992 until 2015. With daily returns of 0.46 percent and
    a Sharpe Ratio of 5.8 prior to transaction costs, we find LSTM networks to outperform memory
    free classification methods, i.e., a random forest (RAF), a deep neural net (DNN), and a logistic
    regression classifier (LOG).”

    https://www.econstor.eu/bitstream/10419/157808/1/886576210.pdf

  11. Avatar
    Anesh April 13, 2018 at 9:45 pm #

    I think to comsider a problem as time series the data should have same interval of time.Iam not sure about it

    • Avatar
      Jason Brownlee April 14, 2018 at 6:44 am #

      Time series must have observations over time, a time dependence to the obs.

  12. Avatar
    Darshan April 15, 2018 at 9:56 am #

    The paper referenced in this article is from 2001, could the arguments be dated?

    • Avatar
      Jason Brownlee April 16, 2018 at 6:02 am #

      Perhaps.

      I have not seen any good results for a straight LSTM on time series and many personal experiments have confirmed these findings.

      MLPs, even linear models will kill an LSTM on time series forecasting.

  13. Avatar
    Alex May 28, 2018 at 11:50 pm #

    I’ve got a question about stationarity: let’s say I’ve made seasonal & trend adjustment for my time series input, scaled it and then passed this data to some NN model (e.g., LSTM or windowed-MLP), how do I add seasonal & trend components to the final answer?

    I tried to google it but found nothing.

    Thanks!

    • Avatar
      Jason Brownlee May 29, 2018 at 6:27 am #

      If you use differencing, then invert the differencing on the prediction.

      I have a few examples on the blog.

  14. Avatar
    Rick July 17, 2018 at 11:10 pm #

    Hi Jason,

    I have numerous (m), multivariate time-series (and they are of different lengths). My goal is to be able to forecast multiple-steps for a new time-series based on the previous m time-series. Can you suggest how I should approach the problem?

    Thanks!

    • Avatar
      Jason Brownlee July 18, 2018 at 6:35 am #

      Try a suite of different algorithms and see what works best for your specific dataset.

  15. Avatar
    JJ Goldman August 7, 2018 at 11:07 pm #

    Really nice article, thank you!

  16. Avatar
    Guido Salimbeni August 11, 2018 at 11:06 pm #

    Hello,
    Thank you so much for your posts. I wonder if I can ask you a couple of questions..
    I
    have seen many tutorial trying to forecast the next value given the previous value. What if I want to predict the numbers of syntax errors that a person commits while writing a word in english?
    The word is a sequence of character and can have various lenght. The prediction is an integer value from zero to the length of the word. But can be set to a max lenght limit, i guess.

    Would be an good example for lstm?

    I believe that a combination of certain characters makes the word more difficult to spell, therefore if the network can remember the order of the character would perform better? So in this case Lstm is preferable than MLP?

    If so, should i use a regression lstm and not a classification Lstm?

    Do you cover this things on your book?

    Thank you!!!!!

    Guido

    • Avatar
      Jason Brownlee August 12, 2018 at 6:34 am #

      Explore many framings of the problem.

      Perhaps you could output the same sequence with corrections?
      Perhaps you could output each error detected as it is detected?
      Perhaps you could output the index of errors detected?

      This is specific to the problem you want to solve, you will need to use trial and error with different framings of the problem in order to discover what works well.

  17. Avatar
    SARAVANAN S August 20, 2018 at 3:41 pm #

    Is it possible to apply LSTM for multiple seasonality

    • Avatar
      Jason Brownlee August 21, 2018 at 6:10 am #

      You can try, perhaps try an CNN first, then a CNN-LSTM. A straight LSTM often performs poorly on time series problems.

  18. Avatar
    andrewk September 3, 2018 at 9:13 pm #

    Hallo Jason,

    many thanks for the many and varied tutorials that you have provided here.

    I am a little confused as what exactly is meant by “windowed MLP”: is this achieved by incorporating previous observations into the current observation, as described e.g. here.

    https://machinelearningmastery.com/time-series-forecasting-supervised-learning/

    or are you referring to something else?

    Thanks, Andrew

    • Avatar
      Jason Brownlee September 4, 2018 at 6:05 am #

      Correct. Window means a fixed set of lag observations used as input.

  19. Avatar
    DeGroff September 11, 2018 at 11:30 am #

    Hi Jasan! Your site has been the No.1 portal for me to help myself dive into DL scene! Much obliged for disclosing such huge amount of engineering or practical usages of DL and Keras! I’m a post graduate and doing Electricity Disaggregation stuffs(Disaggregate the mixed electricity power consumption time-series data of several appliance into the respective appliance-wise power data). I’m taking some techniques from your time-series prediction tutorials, like using some time distributed cnn layers and lstm layers. I’m just starting off and knowing not much of sophisticated DL network combining patterns. Would you please share some of your suggestions or opinions on my project? Should I borrow some knowledge or use cases of NLP scene? Thank you again.

  20. Avatar
    mk January 3, 2019 at 8:26 pm #

    An autoregression (AR) approach was used to model these problems.
    Is there any other way to deal with these problem except AR?

    • Avatar
      Jason Brownlee January 4, 2019 at 6:31 am #

      Yes, but you must get creative. E.g. model residuals, direct models, etc.

  21. Avatar
    John January 19, 2019 at 4:28 pm #

    Thanks for this great post. Suppose we are given a noisy signal x of length 100. We also know that every 10 timesteps the signal is not contaminated by noise, i.e x(1), x(10), x(20),…,x(100) are all clean datapoint that we wish to preserve. Our goal now is to denoise the input signal while promoting the output of LSTM to produce the same value as in the input every 10 steps. Is there a way to do something like that?

  22. Avatar
    hamid May 5, 2019 at 12:42 am #

    Hello Jason,
    After getting my results from comparing MLPs and LSTMs on a data, I came to the conclusion that MLPs are much more efficient than LSTMs, when using constant number of lags (let’s say 7 days before) to predict 4 days ahead. Would You create a tutorial on using LSTMs with dynamic lag time?
    Thanks.

    • Avatar
      Jason Brownlee May 5, 2019 at 6:33 am #

      Thanks for the suggestion.

      Almost all of my LSTM examples vectorize variable length input with zero padding.

  23. Avatar
    PG August 8, 2019 at 7:51 am #

    Hi Jason,

    Is it possible that LSTM fail to predict over a certain threshold for a dataset? I am working on a time series dataset, and I have varied number of time steps in each sample and the network complexity, but no matter what I do, the accuracy does not increase. The RMSE is stuck between a range of (+0.1,-0.1)

    • Avatar
      Jason Brownlee August 8, 2019 at 2:16 pm #

      Perhaps first evaluate a naive method, then linear methods, MLPs, etc. to determine if the LSTM is skillful. It is possible that a new architecture, new data prep or perhaps new model is required.

      • Avatar
        PG August 9, 2019 at 1:28 am #

        Thanks a lot. I will try your suggestions.

  24. Avatar
    Armand du Plessis October 28, 2019 at 11:35 pm #

    Jason ! Thanks so much for being a mentor to so many ! I’ve bought your book ” Deep learning for time series”…really great !!

    Onto my question…?

    I’m very unsure what LSTMs prefer…do LSTMs prefer a windowed lagged time-series input, like windowed MLP’s ? or is there some other better strategy ?

    I’m predicting solar power output (y) for the next 6 hours in advance. I’m using a sliding window approach (with multivariate input – temp. irradiance, wind speed) but i’m not getting close to Feed Forward MLP results…

    So, I’m thinking a windowed approach might be totally wrong ?? I’ve played with multiple lagged window sizes. Yet, the FFNN prevails with simply 6hour lagged window…Basically do LSTMs prefer some sort of dynamically expanding input window or in your experience anything else other than fixed lagged sliding windows ?

    (Data set: 400,000 data points, 4 years, 5min resolution – so very large)

    Any reply will be fantastic !!

  25. Avatar
    Bill Erwin November 9, 2019 at 3:40 am #

    hey Jason, Love your work man. It’s accelerated my progress by 10X. I couldn’t figure out why the LSTMs were doing a poor job with my AR data sets. It was great to find this article–prior to that I thought I was screwing up my code with the LSTM.

    Eventually I found that (as mentioned above) after transforming to stationarity and seasonally adjusting as well I was able to get great results with a traditional Unobserved Components Model applied to the transformed data.

  26. Avatar
    Hao Dai May 7, 2020 at 5:20 pm #

    Hey, Jason. Thanks for your detailed tutorial.
    Where could I find a reference on MLPs with a window?
    Thank you!

  27. Avatar
    Michael Zheng May 23, 2020 at 3:14 am #

    Hi Jason. I was wondering if I can only use a vanilla LSTM to do feature extraction.

    For example, I have time series data such as bicycle routes and I want to use a many2one LSTM to output a feature vector at the last time step. This feature vector will be combined with other features and fed into a DNN. Will this approach work?

    Thank you.

    • Avatar
      Jason Brownlee May 23, 2020 at 6:29 am #

      Perhaps try it and see.

      • Avatar
        Michael Zheng May 24, 2020 at 6:14 am #

        Many thanks!

  28. Avatar
    Ghali raja Yakoub July 17, 2020 at 12:01 am #

    Hi Jason,
    Thank you for all of your tutorial, I am a big fan of your work.
    I am wondering if you have any advice regarding predicting Random walk data such as Wind speed.
    I have been trying several algorithms, AR, ARMA, ARIMA, SARIMA, ANN, KNN, ANN. and all resulted in previous time step is the best predictor. it is a tough task to guess the next value relying only on historical data.
    Thanks in advance

    • Avatar
      Jason Brownlee July 17, 2020 at 6:17 am #

      The best we can do for a random walk is use a persistence model.

  29. Avatar
    Morad October 3, 2020 at 3:04 am #

    Hi Dr. Jason

    When implementing the LSTM algorithm, should structural risk be verified?

    Thanks in advance for help.

  30. Avatar
    Niloo October 31, 2020 at 8:43 am #

    Hi Jason,
    I find your posts extremely useful!
    Thank you so much.
    I tried to use LSTM to predict a time-series the way you posted but my challenge is when I fit the model to training data once and use for prediction the future t + x my result is not much different than fitting to initial training data and then re-fitting (updating) the model with new test data, one at a time.
    I’d expect the algorithm to learn from new test points and adjust its predictions to fit the data better but I don’t see much difference.
    I suspected the issue is that LSTM is only predicting the differenced, scaled “stationarized” data and does not learn about it’s non-stationary component which causes the gap between the final predictions and the actual data.
    So to fix this, I removed the differencing step in data preparation and the reverse differencing in the final step and expected that since LSTM can work well for non-stationary data, I should see reasonable output but in this case the predictions have a large gap with the actual test data!

  31. Avatar
    Vitomir Jovanovic March 12, 2021 at 10:43 pm #

    I had a problem with univariate time series that had a lot of randomness and was non-stationary, but I implemented a stacked LSTM with one layer and it performs good. I just wander how LSTM are capable of forecasting to more than one future lag, if we want to have 10 or 20 lags prediction in the future. SARIMAX model is capable of achieving so, but with expectedly poorly results in contrast to one-lag prediction.

  32. Avatar
    Vitomir Jovanovic March 12, 2021 at 10:45 pm #

    Forgot to mention, big fan of your simple, didactic step by step approach. This approach could be manifested only by people with deep and full understanding of the problems.

Leave a Reply