Modeling Long- and Short-Term Temporal Patterns with Deep Neural Networks
Guokun LaiWei-Cheng ChangYiming YangHanxiao Liu
Introduces LSTNet, a deep learning architecture that integrates convolutional and recurrent neural networks with an autoregressive model to capture both short-term local dependencies and long-term trends while addressing scale insensitivity in multivariate time series forecasting.
The paper introduces a deep neural network called LSTNet to improve multivariate time series forecasting when data contain mixtures of short-term local dependencies and long-term repeating patterns. Such data appear in practical settings such as hourly freeway occupancy, solar power output, electricity demand, and daily exchange rates, where existing linear models (autoregressive integrated moving average, vector autoregression, Gaussian processes) and basic recurrent networks often miss one or both pattern types and produce large errors at longer forecast horizons.
The authors built LSTNet by stacking a convolutional layer to extract local variable interactions, a gated recurrent unit layer augmented with either fixed skip connections or a learned temporal attention mechanism to capture periodic structure over many time steps, and a parallel linear autoregressive component to correct for abrupt scale shifts that pure neural networks handle poorly. They trained the model with standard squared or absolute loss on four public benchmark series, using held-out validation data to select hyperparameters, and compared it against eight strong baselines across forecast horizons of 3 to 24 steps.
On the three series that exhibit clear daily or weekly repetition, both LSTNet variants reduced root relative squared error by 9–22 percent relative to the strongest recurrent baseline at the longest horizon and produced the best or second-best result in 24 of 36 metric–dataset–horizon combinations. The autoregressive bypass proved essential for robustness when input magnitude changed suddenly. On the exchange-rate series, which lacks strong periodicity, LSTNet performed comparably to the best linear models rather than degrading.
These gains translate directly into more reliable advance warnings for traffic congestion, solar plant scheduling, and grid load balancing, especially when decisions must be made many hours or days ahead. The linear bypass also reduces the risk that sudden scale shifts will render neural forecasts unusable in production.
The main limitations are that the skip length must still be chosen or tuned from data and that the model offers no automatic way to exploit additional metadata attached to the series. Future work could therefore focus on learning the skip length and on incorporating side information. Overall the empirical evidence is consistent and substantial on periodic data, giving decision makers a practical reason to adopt or pilot LSTNet where forecast accuracy at extended horizons materially affects operations or cost.
- Paper: Long Short-Term Memory, Sepp Hochreiter et al. (1997). Reading the original LSTM paper provides the foundational understanding of the recurrent gating mechanisms that LSTNet builds upon for capturing sequential patterns.
- Paper: Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting, Xingjian Shi et al. (2015). The Convolutional LSTM architecture establishes how spatial and temporal convolutions can be integrated into recurrent networks, serving as an important architectural precursor.
- Paper: Autoformer: Decomposition Transformers with Auto-Correlation for Long-Term Series Forecasting, Haixu Wu et al. (2021). Autoformer extends long-term time series forecasting beyond LSTNet by introducing inner decomposition blocks and self-correlation mechanisms to handle complex periodicity.
- Paper: Informer: Beyond Efficient Transformer for Long Sequence Time-Series Forecasting, Haoyi Zhou et al. (2021). Informer builds upon the sequence-modeling foundations established by LSTNet to develop an efficient Transformer variant capable of handling extremely long forecasting horizons.
- Paper: FEDformer: Frequency Enhanced Decomposed Transformer for Long-term Series Forecasting, Tian Zhou et al. (2022). FEDformer continues the exploration of hybrid temporal-frequency methods for time series forecasting by combining seasonal-trend decomposition with frequency-domain attention.
- Paper: Are Transformers Effective for Time Series Forecasting?, Ailing Zeng et al. (2023). This paper critically evaluates subsequent developments in deep time series forecasting, offering a vital comparative perspective on the effectiveness of complex neural architectures versus linear models.
