标签:xpl graph type zed http signed variable Fix repo
Time series prediction problems are a difficult type of predictive modeling problem.
Unlike regression predictive modeling, time series also adds the complexity of a sequence dependence among the input variables.
A powerful type of neural network designed to handle sequence dependence is called recurrent neural networks. The Long Short-Term Memory network or LSTM network is a type of recurrent neural network used in deep learning because very large architectures can be successfully trained.
In this post, you will discover how to develop LSTM networks in Python using the Keras deep learning library to address a demonstration time-series prediction problem.
After completing this tutorial you will know how to implement and develop LSTM networks for your own time series prediction problems and other more general sequence problems. You will know:
In this tutorial, we will develop a number of LSTMs for a standard time series prediction problem. The problem and the chosen configuration for the LSTM networks are for demonstration purposes only they are not optimized.
These examples will show you exactly how you can develop your own differently structured LSTM networks for time series predictive modeling problems.
Let’s get started.
The example in this post is quite dated, I have better examples available for using LSTMs on time series, see:
标签:xpl graph type zed http signed variable Fix repo
原文地址:https://www.cnblogs.com/zhangbo2008/p/9288556.html