Informer
Informer: Beyond Efficient Transformer for Long Sequence Time-Series Forecasting · Also known as: Informer — Uzun Dizi Transformer Tahmini, Informer transformer, ProbSparse attention forecaster
Informer is a Transformer-based model introduced by Zhou et al. in 2021 for long-sequence time-series forecasting, using a ProbSparse self-attention mechanism that lowers the computational complexity of the standard Transformer to O(L log L). It is built for problems that demand predictions across thousands of future steps.
Read the full method
Sign in with a free account to read this section.
Method map
The neighbourhood of related methods — select a node to explore.
+3 more
When to use it
Use Informer when you need long-horizon forecasting of a continuous time series — typically a prediction window beyond about 96 steps — and you have a long history of at least roughly 500 observations. It is well suited to multivariate series and applications such as energy, weather, and traffic, and it normally requires a GPU. It does not assume normally distributed data. On short series (below about 200 observations) it overfits, and below about 500 the ProbSparse attention cannot find reliable patterns, so simpler models such as ARIMA or Random Forest are safer.
Strengths & limitations
- Reduces Transformer attention complexity to O(L log L), making very long sequences tractable.
- Designed specifically for long forecasting horizons beyond 96 steps.
- Handles multivariate continuous time series.
- Does not require normally distributed data.
- Needs a long history — around 500 observations or more — to learn reliably.
- Requires a GPU for practical training.
- On short series (below about 200 observations) it overfits badly.
- Below about 500 observations the ProbSparse attention fails to find stable patterns.
Frequently asked
How is Informer different from a standard Transformer?
It replaces full self-attention with ProbSparse self-attention, which computes attention only for the queries that dominate the distribution. This lowers the complexity from quadratic to O(L log L), making very long input and output sequences feasible.
How much data do I need?
Informer is a deep model aimed at long sequences and expects a long history — roughly 500 observations or more. Below about 500 the attention mechanism cannot find reliable patterns, and below about 200 it overfits, so simpler models are preferable.
Do I need a GPU?
Yes. Like other deep forecasting Transformers, Informer is built to run on a GPU; training on CPU alone is impractical for the long sequences it targets.
When should I not use Informer?
Avoid it for short time series. Below about 500 observations consider Random Forest, and for very short series below about 200 observations ARIMA is a safer choice.
Sources
- Zhou, H. et al. (2021). Informer: Beyond Efficient Transformer for Long Sequence Time-Series Forecasting. AAAI. DOI: 10.1609/aaai.v35i12.17325 ↗
- Wu, H., Xu, J., Wang, J. & Long, M. (2021). Autoformer: Decomposition Transformers with Auto-Correlation for Long-Term Series Forecasting. NeurIPS 34. link ↗
How to cite this page
ScholarGate. (2026, June 1). Informer: Beyond Efficient Transformer for Long Sequence Time-Series Forecasting. ScholarGate. https://scholargate.app/en/deep-learning/informer
Which method?
Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.
- ARIMAEconometrics↔ compare
- DeepARDeep learning↔ compare
- N-HiTSDeep learning↔ compare
- PatchTSTDeep learning↔ compare
- Random ForestMachine learning↔ compare