paper-with-me

홈 › Papers

iTransformer: Inverted Transformers Are Effective for Time Series Forecasting

2023-10-10 · Yong liu, Tengge Hu, Haoran Zhang, Haixu Wu, Shiyu Wang, Lintao Ma, Mingsheng Long

The recent boom of linear forecasting models questions the ongoing passion for architectural modifications of Transformer-based forecasters. These forecasters leverage Transformers to model the global dependencies over temporal tokens of time series, with each token formed by multiple variates of the same timestamp. However, Transformers are challenged in forecasting series with larger lookback windows due to performance degradation and computation explosion. Besides, the embedding for each temporal token fuses multiple variates that represent potential delayed events and distinct physical measurements, which may fail in learning variate-centric representations and result in meaningless attention maps. In this work, we reflect on the competent duties of Transformer components and repurpose the Transformer architecture without any modification to the basic components. We propose iTransformer that simply applies the attention and feed-forward network on the inverted dimensions. Specifically, the time points of individual series are embedded into variate tokens which are utilized by the attention mechanism to capture multivariate correlations; meanwhile, the feed-forward network is applied for each variate token to learn nonlinear representations. The iTransformer model achieves state-of-the-art on challenging real-world datasets, which further empowers the Transformer family with promoted performance, generalization ability across different variates, and better utilization of arbitrary lookback windows, making it a nice alternative as the fundamental backbone of time series forecasting. Code is available at this repository: https://github.com/thuml/iTransformer.

📄 PDF Abstract BibTeX arXiv:2310.06625

Code (11)

thuml/iTransformer 공식 구현 pytorch
Hannibal046/GridTST pytorch
WenjieDu/PyPOTS pytorch
hughxx/tsf-new-paper-taste pytorch
kwuking/TimeMixer pytorch
lss-1138/SegRNN pytorch
lucidrains/iTransformer pytorch
master-plc/fredf pytorch
sanjaylopa22/QCAAPatchTF pytorch
taohan10200/weather-5k pytorch
thuml/Time-Series-Library pytorch

Tasks

Time SeriesTime Series Forecasting

Methods 이 논문이 사용한 방법론

Multi-Head Attention 설명 없음
Attention 설명 없음
Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Position-Wise Feed-Forward Layer 설명 없음
Softmax The Softmax output function transforms a previous layer's output into a vector of probabilities. It is commonly used for multiclass classification. Given an input vector $x$…
BPE Byte Pair Encoding, or BPE, is a subword segmentation algorithm that encodes rare and unknown words as sequences of subword units. The intuition is that various word…
Label Smoothing Label Smoothing is a regularization technique that introduces noise for the labels. This accounts for the fact that datasets may have mistakes in them, so maximizing the…
Adam 설명 없음

Similar Papers 제목 키워드 기반

Data Augmentation in Time Series Forecasting through Inverted Framework

2025-07-15 · Hongming Tan, Ting Chen, Ruochong Jin, Wai Kin Chan

Currently, iTransformer is one of the most popular and effective models for multivariate time series (MTS) forecasting. Thanks to its inverted framework, iTransformer effectively captures multivariate correlation. Howeve…

Data AugmentationTime SeriesTime Series Forecasting

Towards Efficient Large Scale Spatial-Temporal Time Series Forecasting via Improved Inverted Transformers

2025-03-13 · Jiarui Sun, Chin-Chia Michael Yeh, Yujie Fan, Xin Dai 외

Time series forecasting at scale presents significant challenges for modern prediction systems, particularly when dealing with large sets of synchronized series, such as in a global payment network. In such systems, thre…

Computational EfficiencyTime SeriesTime Series Forecasting

Parking Availability Prediction via Fusing Multi-Source Data with A Self-Supervised Learning Enhanced Spatio-Temporal Inverted Transformer

2025-09-04 · Yin Huang, Yongqi Dong, Youhua Tang, Li Li arxiv

The rapid growth of private car ownership has worsened the urban parking predicament, underscoring the need for accurate and effective parking availability prediction to support urban planning and management. To address …

Self-Supervised LearningRepresentation Learning

InvDec: Inverted Decoder for Multivariate Time Series Forecasting with Separated Temporal and Variate Modeling

2025-10-23 · Yuhang Wang arxiv

Multivariate time series forecasting requires simultaneously modeling temporal patterns and cross-variate dependencies. Channel-independent methods such as PatchTST excel at temporal modeling but ignore variable correlat…

Multivariate Time Series Forecasting

Benchmarking Unsupervised Strategies for Anomaly Detection in Multivariate Time Series

2025-06-25 · Laura Boggia, Rafael Teixeira de Lima, Bogdan Malaescu

Anomaly detection in multivariate time series is an important problem across various fields such as healthcare, financial services, manufacturing or physics detector monitoring. Accurately identifying when unexpected err…

Anomaly DetectionBenchmarkingTime SeriesTime Series Anomaly Detection