Pith. sign in

REVIEW 3 major objections 5 minor 43 references

A Multi-scale Representation Learning Framework for Long-Term Time Series Forecasting

T0 review · 3 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read MDMixer claims a 4.64% average MAE improvement over the MLP state of the art (TimeMixer) on eight long-term forecasting benchmarks, with lower training cost.

desk verdict MDMixer is a plausible incremental architecture, but its headline MAE margin over TimeMixer is largely a training-objective artifact and the SOTA claim does not survive close reading. read the letter →

arxiv 2505.08199 v2 pith:5T2FHFBQ submitted 2025-05-13 cs.LG

classification cs.LG
keywords long-termtimeseriesforecastingmulti-granularityrepresentationMLP-basedseasonal-trenddecompositionadaptiveweightinggatechannel-dependentfusionmulti-scalepredictionefficiency
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper tries to establish that long-term time series forecasting improves when a model explicitly predicts the series at several temporal granularities at once and then lets each data channel decide how much to trust each granularity. The proposed MDMixer architecture runs parallel prediction heads at graduated lengths, mixes them coarse-to-fine, and fuses them with a channel-dependent gating network, on top of a trend/seasonal dual branch. On eight standard benchmarks, the paper reports that this beats the previous best MLP forecaster, TimeMixer, by 2.50% in MSE and 4.64% in MAE on average, while using far less training time and memory than comparable models. The authors also claim the dual-branch design can be transplanted into existing linear models to improve them. A sympathetic reader would care because it suggests simple, efficient MLP architectures can outperform attention-based models without giving up interpretability.

What carries the argument

The load-bearing mechanism is the Multi-granularity Predictor and Mixer (MPM) block, made of three interacting pieces: MPP, where parallel heads predict at graduated lengths so the model explicitly represents coarse seasonal/trend behavior and fine fluctuations at once; MIM, which iteratively fuses the heads coarse-to-fine by adding each head's output to a linear transformation of the previous cumulative output; and AMWG, a gating network that takes global average-pooled seasonal and trend embeddings, concatenates them, and produces an $H \times C$ weight tensor, with softmax over heads per channel. A dual-branch decomposition routes the seasonal component through linear predictors and the trend through MLPs, and an auxiliary alignment loss compares each intermediate prediction with a downsampled target. The final prediction is the channel-weighted sum of upsampled head outputs plus their unweighted average, which acts as a stable baseline.

What would settle it

Run TimeMixer, iTransformer, PatchTST, and MDMixer on all eight datasets under one shared codebase, same hardware, same seeds, same normalization, and the same hyperparameter search budget; if TimeMixer's average MAE matches or beats MDMixer, or the gap disappears within seed noise, the central improvement claim fails.

Watch

Extended reading notes

Core claim

The central claim is that multi-granularity information should be generated, not just extracted: MDMixer uses a Multi-granularity Parallel Predictor (MPP) whose $H$ heads each output a prediction of length $G_i = g \cdot i$, so coarse and fine views are produced concurrently from the embedded input; a Multi-granularity Iterative Mixer (MIM) then accumulates these predictions coarse-to-fine; and an Adaptive Multi-granularity Weighting Gate (AMWG) assigns softmax-normalized weights over heads for each channel, allowing different variables to rely on different scales. The trend and seasonal components are modeled separately, with linear layers for seasonality and MLPs for trend, and a granularity-aligned loss supervises each intermediate prediction against a downsampled ground truth. The paper reports that this architecture improves average MAE by 4.64% over TimeMixer across eight LTSF benchmarks, also outperforming iTransformer and PatchTST, and that the dual-branch decomposition improves DLinear, RLinear, and NLinear when inserted into them.

Load-bearing premise

The reported 4.64% MAE margin assumes the baseline numbers taken from prior papers are accurate and comparable; baselines were not re-run by the authors, while MDMixer's numbers are three-seed averages from their own runs, so a same-protocol rerun could shrink or reverse the gap.

Editorial extensions

If this is right

  • If MDMixer's results hold, MLP-based forecasting can match or beat transformer models on standard LTSF benchmarks while using a fraction of the training time and memory.
  • The dual-branch decomposition is claimed to be a transferable module: adding it to DLinear, RLinear, and NLinear improves their accuracy, so existing linear baselines can be upgraded without a full architecture change.
  • The AMWG weight heatmaps show sparse assignments, with most channels concentrating weight on the coarsest and finest heads; this gives users a per-variable diagnostic of which temporal scale drives each channel.
  • Longer look-back lengths consistently help MDMixer, unlike attention models, so users with long histories can expect better forecasts as history grows.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If the gating mechanism is the active ingredient, the same AMWG module could be grafted onto TimeMixer or other multi-scale mixers; the paper does not test this, but the ablation evidence makes it worth trying.
  • The alignment loss uses average-pooled targets, so a natural untested variant would use frequency-selective downsampling to force each head to specialize on a cleaner temporal scale.
  • The sparse head weights on Electricity suggest that head specialization may correspond to interpretable periodic bands; a spectral analysis of each head's learned mapping would test whether the granularity labels are meaningful.
  • Because the reported margin is averaged over eight datasets with very different channel counts, a per-dataset breakdown would show whether channel-aware fusion matters most in high-dimensional settings like Traffic and Electricity.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper proposes MDMixer, an MLP-based framework for long-term time series forecasting. The architecture combines multi-granularity parallel prediction heads (MPP), iterative coarse-to-fine mixing (MIM), a channel-dependent adaptive weighting gate (AMWG), and a dual-branch trend/seasonal decomposition with linear and MLP predictors. An auxiliary alignment loss supervises intermediate predictions against downsampled ground truth. Experiments on eight standard benchmarks report an average MAE improvement of 4.64% over TimeMixer, along with improved training efficiency and an interpretability visualization. The paper also shows that adding its dual-branch decomposition to linear baselines improves their accuracy.

Significance. If the reported comparison were clean, MDMixer would be a useful contribution: the architecture is clearly described, the ablation study isolates the role of each module, the sensitivity analyses cover key hyperparameters, and the efficiency comparison is instructive. The paper's central quantitative claim, however, is the 4.64% average MAE improvement over TimeMixer, and that claim is directly affected by a training-loss mismatch between MDMixer and the baselines. The 'state-of-the-art' wording is also broader than the evidence in Table 2 supports. These issues are fixable, but they require either additional experiments or a substantial restatement of the claims.

major comments (3)
  1. [Section 4.1.3 and Table 2] The headline comparison is confounded by a training-loss mismatch. Section 4.1.3 states 'We use MAE as the loss function', and Section 3.5 (Eq. 17) defines the main loss as the L1 norm. The baseline numbers in Table 2 are taken from prior publications, which typically optimize MSE, and the paper does not disclose those losses or retrain baselines under the same objective. Since the abstract's central claim is specifically a 4.64% average MAE improvement over TimeMixer, this is not an architecture-matched comparison. The pattern in Table 2 is consistent with the confound: MDMixer frequently shows better MAE but worse or comparable MSE than TimeMixer (e.g., ETTh1 horizon 96: MAE 0.386 vs 0.400 while MSE 0.379 vs 0.375; Traffic horizon 96: MAE 0.275 vs 0.285 while MSE 0.439 vs 0.462). The authors should retrain baselines with L1 loss, or at minimum report an MSE-based comparison and temper the MAE-based claim accordingly.
  2. [Section 4.1.4 and Table 2] The claim of state-of-the-art performance is not supported by the paper's own table. On Traffic, iTransformer achieves better average MSE and MAE (0.428/0.282) than MDMixer (0.465/0.286), and MDMixer is worse than iTransformer on every Traffic horizon. Similarly, on Electricity with horizon 96, iTransformer has MSE 0.148 versus MDMixer's 0.152. The contribution list and conclusion describe MDMixer as 'state-of-the-art' without qualification, but the evidence only supports a comparison against TimeMixer and specific baselines on some datasets. These sweeping claims should be replaced with dataset-specific statements.
  3. [Section 4.1.3 and 'Improvement' row in Table 2] The empirical significance of the claimed improvements is not established because no standard deviations are reported despite the statement that each experiment was repeated three times, and the baseline numbers have no error bars at all. The 'Improvement' row also averages over heterogeneous per-dataset averages without weighting or noting that MDMixer is worse than iTransformer on Traffic in all four horizons. Given that the claimed improvement margins are on the order of 2–5%, the absence of any variability or significance measure makes it impossible to judge whether the differences are meaningful. The authors should report per-cell standard deviations and clearly define the aggregation procedure.
minor comments (5)
  1. [Section 4.2] The sentence 'our method requires fewer parameters (50.2K vs. 34.8K in the Electricity dataset)' appears to state the numbers in the wrong order; as written it says MDMixer requires more parameters when the comparison presumably intends fewer. Please correct to '34.8K vs. 50.2K' or provide the actual values.
  2. [Figure 5] The caption says 'MSE scores with varying alignment loss weight' but the figure shows both MSE and MAE curves; update the caption to mention both metrics.
  3. [Section 4.5] The efficiency comparison says all models use the same batch size and look-back length but does not state the actual batch size, input length, or model-specific hyperparameter settings. Reporting these details would make the efficiency claim reproducible.
  4. [Section 4.1.4, Table 2] The 'Improvement' row should explain that the percentage is computed as the average of per-dataset averages, not as a reduction on the pooled dataset. This will help readers interpret the aggregate numbers.
  5. [Table 3 caption] The table caption and text use 'vanilla version', 'modified baselines', and asterisks in a way that is easy to confuse. Clarify that asterisks denote baselines augmented with the decomposition module and that '(Dual-Branch)' denotes the proposed replacement of the trend predictor.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: MDMixer's architecture and results are evaluated against external benchmarks, and no prediction reduces to fitted inputs or self-citations.

full rationale

The paper's central claim is an empirical performance comparison against established external baselines on eight standard benchmarks. The method is a new architecture with multi-granularity prediction heads, a mixing module, and a gating mechanism; the final prediction is produced from learned transformations of the input and is not defined in terms of the target quantity. The alignment loss (Eq. 18) supervises intermediate heads with downsampled ground truth, but this is standard auxiliary supervision and does not make the final output equivalent to the target by construction. There are no load-bearing self-citations, no imported uniqueness theorems, and no fitted parameter that is later renamed as a prediction. The reported MAE improvement over TimeMixer is potentially confounded because MDMixer is trained with an L1 loss while baseline numbers were taken from publications that optimize MSE; however, this is an experimental comparability and fairness concern, not a circularity of the derivation chain. The interpretability discussion is a post hoc observation of learned weights and does not feed back into the results. No specific equation-to-equation reduction or self-referential justification was found, so the appropriate finding is no significant circularity.

Assumptions & free parameters 6 free parameters · 5 assumptions · 0 invented entities

The central claim is an empirical architecture performance claim, not a derivation. The free parameters are hyperparameters tuned on validation sets. The axioms are standard tools from the time series forecasting literature, with no speculative physical entities introduced.

free parameters (6)
  • hidden_size = 64 (128 for Electricity and Traffic)
    Chosen by hand; larger datasets use 128.
  • patch_length = 32
    Selected from sensitivity analysis in Figure 6; 32 gives lowest MSE.
  • stride = 16
    Set to half the patch length; not independently tuned.
  • num_heads = 8 (16 for Electricity and Traffic)
    Selected from sensitivity analysis in Figure 4; 8 is the default.
  • alignment_loss_weight = 0.01
    Selected from sensitivity analysis in Figure 5.
  • learning_rate = 1e-2 or 1e-3
    Not specified per dataset; a free optimization choice.
assumptions (5)
  • standard math MLPs are universal approximators
    Invoked to justify MLP-based trend modeling (Section 3.2, reference [12]).
  • domain assumption Linear models capture seasonal periodicities better than MLPs, and MLPs capture trends better
    Adopted from prior work [16]; the paper relies on this asymmetry for its dual-branch design (Section 3.2).
  • domain assumption Instance normalization mitigates distribution shift
    Used as a preprocessing step (Section 3.1.1), based on prior work [14,27].
  • domain assumption Patch embedding preserves useful local temporal structure
    Standard practice from PatchTST; assumed to help representation learning (Section 3.2).
  • domain assumption The benchmark datasets and chronological splits are representative of real-world forecasting
    The evaluation protocol follows prior work (Section 4.1.1) and assumes the reported numbers transfer to other settings.

how reviews work

0 comments
Cite this review

Pith. "Pith review of A Multi-scale Representation Learning Framework for Long-Term Time Series Forecasting." pith.science (2026). https://pith.science/paper/5T2FHFBQ

@misc{pith2026250508199,
  author       = {Pith},
  title        = {Pith review of: A Multi-scale Representation Learning Framework for Long-Term Time Series Forecasting},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/5T2FHFBQ}},
  note         = {Machine review of arXiv:2505.08199}
}
read the original abstract

Long-term time series forecasting (LTSF) offers broad utility in practical settings like energy consumption and weather prediction. Accurately predicting long-term changes, however, is demanding due to the intricate temporal patterns and inherent multi-scale variations within time series. This work confronts key issues in LTSF, including the suboptimal use of multi-granularity information, the neglect of channel-specific attributes, and the unique nature of trend and seasonal components, by introducing a proficient MLP-based forecasting framework. Our method adeptly disentangles complex temporal dynamics using clear, concurrent predictions across various scales. These multi-scale forecasts are then skillfully integrated through a system that dynamically assigns importance to information from different granularities, sensitive to individual channel characteristics. To manage the specific features of temporal patterns, a two-pronged structure is utilized to model trend and seasonal elements independently. Experimental results on eight LTSF benchmarks demonstrate that MDMixer improves average MAE performance by 4.64% compared to the recent state-of-the-art MLP-based method (TimeMixer), while achieving an effective balance between training efficiency and model interpretability.

Figures

Figures reproduced from arXiv: 2505.08199 by the authors.

Figure 1
Figure 1. The core concept of MDMixer: (Top-Left) Parallel [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Overview of MDMixer architecture. Multivariate time series are decomposed into trend and seasonal components. The [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 4
Figure 4. MSE scores with varying heads number 𝐻 ∈ {2, 4, 8, 12, 16}. 0.001 0.010 0.050 0.100 0.200 Alignment Loss Weight ( ) 0.3085 0.3090 0.3095 0.3100 0.3105 MSE MSE MAE 0.3390 0.3395 0.3400 0.3405 0.3410 MAE ETTm1 0.001 0.010 0.050 0.100 0.200 Alignment Loss Weight ( ) 0.152 0.154 0.156 0.158 0.160 MSE MSE MAE 0.192 0.194 0.196 MAE weather [PITH_FULL_IMAGE:figures/full_fig_p008_4.png] view at source ↗
Figures from the paper (3 more)
Figure 6
Figure 6. Figure 6: MSE scores with varying patch length 𝑃 ∈ {8, 12, 16, 24, 32}. 96 192 336 512 720 Look-back Length 0.30 0.35 0.40 0.45 MSE ETTm1 96 192 336 720 96 192 336 512 720 Look-back Length 0.15 0.20 0.25 0.30 0.35 MSE weather 96 192 336 720 [PITH_FULL_IMAGE:figures/full_fig_p00…
Figure 7
Figure 7. Figure 7: The forecast error of MDMixer with varying look [PITH_FULL_IMAGE:figures/full_fig_p008_7.png]
Figure 8
Figure 8. Figure 8: The comparison of training time and memory usage [PITH_FULL_IMAGE:figures/full_fig_p009_8.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

43 extracted references · 24 canonical work pages

  1. [1]

    Defu Cao, Furong Jia, Sercan O Arik, Tomas Pfister, Yixiang Zheng, Wen Ye, and Yan Liu. 2024. Tempo: Prompt-based generative pre-trained transformer for time series forecasting. International Conference on Learning Representations (2024)

  2. [2]

    Cristian Challu, Kin G Olivares, Boris N Oreshkin, Federico Garza Ramirez, Max Mergenthaler Canseco, and Artur Dubrawski. 2023. Nhits: Neural hierarchi- cal interpolation for time series forecasting. InProceedings of the AAAI conference on artificial intelligence, Vol. 37. 6989–6997

  3. [3]

    2025.Nonlinear Trending Time Series: Theory and Practice

    Li Chen, Jiti Gao, and Farshid Vahid. 2025.Nonlinear Trending Time Series: Theory and Practice. World Scientific. Preprint, May 2025, Boshi Gao, Qingjian Ni *, Fanbo Ju, Yu Chen, Ziqi Zhao

  4. [4]

    Si-An Chen, Chun-Liang Li, Nate Yoder, Sercan O Arik, and Tomas Pfister. 2023. TSMixer: An all-MLP Architecture for Time Series Forecasting. Transactions on Machine Learning Research (2023)

  5. [5]

    Robert B Cleveland, William S Cleveland, Jean E McRae, and Irma Terpenning

  6. [6]

    Estela Bee Dagum and Silvia Bianconcini. 2016. Seasonal Adjustment Methods and Real Time Trend-Cycle Estimation . Springer

  7. [7]

    A. Das, W. Kong, A. Leach, and et al. 2023. Long-term forecasting with TIDE: Time-series dense encoder. arXiv preprint arXiv:2304.08424 (2023)

  8. [8]

    Dazhao Du, Bing Su, and Zhewei Wei. 2023. Preformer: predictive transformer with multi-scale segment-wise correlations for long-term time series forecast- ing. In IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP). IEEE

Show all 43 references
  1. [9]

    Emadeldeen Eldele, Mohamed Ragab, Zhenghua Chen, Min Wu, and Xiaoli Li

  2. [10]

    Zeying Gong, Yujin Tang, and Junwei Liang. 2023. Patchmixer: A patch-mixing architecture for long-term time series forecasting.arXiv preprint arXiv:2310.00655 (2023)

  3. [11]

    Lu Han, Han-Jia Ye, and De-Chuan Zhan. 2024. The capacity and robustness trade-off: Revisiting the channel independent strategy for multivariate time series forecasting. IEEE Transactions on Knowledge and Data Engineering (2024)

  4. [12]

    Kurt Hornik, Maxwell Stinchcombe, and Halbert White. 1989. Multilayer feed- forward networks are universal approximators. Neural networks (1989)

  5. [13]

    Jongseon Kim, Hyungjoon Kim, HyunGi Kim, Dongjun Lee, and Sungroh Yoon

  6. [14]

    Taesung Kim, Jinhee Kim, Yunwon Tae, Cheonbok Park, Jang-Ho Choi, and Jaegul Choo. 2021. Reversible instance normalization for accurate time-series forecasting against distribution shift. In International Conference on Learning Representations

  7. [15]

    Guokun Lai, Wei-Cheng Chang, Yiming Yang, and Hanxiao Liu. 2018. Modeling long-and short-term temporal patterns with deep neural networks. In Interna- tional ACM SIGIR conference on research & development in information retrieval . 95–104

  8. [16]

    Zhe Li, Shiyi Qi, Yiduo Li, and Zenglin Xu. 2023. Revisiting long-term time series forecasting: An investigation on linear mapping. arXiv preprint arXiv:2305.10721 (2023)

  9. [17]

    Yong Liu, Tengge Hu, Haoran Zhang, Haixu Wu, Shiyu Wang, Lintao Ma, and Mingsheng Long. 2024. iTransformer: Inverted Transformers Are Effective for Time Series Forecasting. In International Conference on Learning Representations

  10. [18]

    Han Lu, Xu-Yang Chen, Han-Jia Ye, and De-Chuan Zhan. 2024. SOFTS: Efficient Multivariate Time Series Forecasting with Series-Core Fusion. In Advances in Neural Information Processing Systems 37 (NeurIPS 2024)

  11. [19]

    Donghao Luo and Xue Wang. 2024. Moderntcn: A modern pure convolution structure for general time series analysis. In International Conference on Learning Representations

  12. [20]

    Luis Martín, Luis F Zarzalejo, Jesus Polo, Ana Navarro, Ruth Marchante, and Marco Cony. 2010. Prediction of global solar irradiance based on time series analysis: Application to solar thermal power plants energy production planning. Solar Energy 84, 10 (2010), 1772–1781

  13. [21]

    Md Mahmuddun Nabi Murad, Mehmet Aktukmak, and Yasin Yilmaz. 2025. WP- Mixer: Efficient multi-resolution mixing for long-term time series forecasting. In Proceedings of the AAAI Conference on Artificial Intelligence

  14. [22]

    Ronghao Ni, Zinan Lin, Shuaiqi Wang, and Giulia Fanti. 2024. Mixture-of-Linear- Experts for Long-term Time Series Forecasting. In International Conference on Artificial Intelligence and Statistics. PMLR, 4672–4680

  15. [23]

    Nguyen, Phanwadee Sinthong, and Jayant Kalagnanam

    Yuqi Nie, Nam H. Nguyen, Phanwadee Sinthong, and Jayant Kalagnanam. 2023. A Time Series is Worth 64 Words: Long-term Forecasting with Transformers. In International Conference on Learning Representations

  16. [24]

    Boris N Oreshkin, Dmitri Carpov, Nicolas Chapados, and Yoshua Bengio. 2020. N- BEATS: Neural basis expansion analysis for interpretable time series forecasting. In International Conference on Learning Representations

  17. [25]

    José A Rial, Roger A Pielke, Martin Beniston, Martin Claussen, JOsep Canadell, Peter Cox, Hermann Held, Nathalie de Noblet-Ducoudré, Ronald Prinn, James F Reynolds, et al. 2004. Nonlinearities, feedbacks and critical thresholds within the Earth’s climate system. Climatic change (2004)

  18. [26]

    Amin Shabani, Amir Abdi, Lili Meng, and Tristan Sylvain. 2023. Scaleformer: Iter- ative multi-scale refining transformers for time series forecasting. InInternational Conference on Learning Representations

  19. [27]

    Dmitry Ulyanov, Andrea Vedaldi, and Victor S Lempitsky. 2016. Instance normal- ization: The missing ingredient for fast stylization.arXiv preprint arXiv:1607.08022 (2016)

  20. [28]

    Huiqiang Wang, Jian Peng, Feihu Huang, Jince Wang, Junhui Chen, and Yifei Xiao. 2023. Micn: Multi-scale local and global context modeling for long-term series forecasting. In International Conference on Learning Representations

  21. [29]

    Shiyu Wang, Haixu Wu, Xiaoming Shi, Tengge Hu, Huakun Luo, Lintao Ma, James Y Zhang, and JUN ZHOU. 2024. TimeMixer: Decomposable Multiscale Mixing for Time Series Forecasting. In International Conference on Learning Representations

  22. [30]

    Yuxuan Wang, Haixu Wu, Jiaxiang Dong, Yong Liu, Mingsheng Long, and Jianmin Wang. 2024. Deep Time Series Models: A Comprehensive Survey and Benchmark. arXiv preprint arXiv:2407.13278 (2024)

  23. [31]

    Qingsong Wen, Jingkun Gao, Xiaomin Song, Liang Sun, Huan Xu, and Shenghuo Zhu. 2019. RobustSTL: A robust seasonal-trend decomposition algorithm for long time series. In Proceedings of the AAAI conference on artificial intelligence

  24. [32]

    Haixu Wu, Tengge Hu, Yong Liu, Hang Zhou, Jianmin Wang, and Mingsheng Long. 2023. TimesNet: Temporal 2D-Variation Modeling for General Time Series Analysis. In International Conference on Learning Representations

  25. [33]

    Haixu Wu, Jiehui Xu, Jianmin Wang, and Mingsheng Long. 2021. Autoformer: De- composition transformers with auto-correlation for long-term series forecasting. Advances in Neural Information Processing Systems 34 (2021), 22419–22430

  26. [34]

    Zhijian Xu, Ailing Zeng, and Qiang Xu. 2024. FITS: Modeling time series with 10𝑘 parameters. In International Conference on Learning Representations

  27. [35]

    Xueyan Yin, Genze Wu, Jinze Wei, Yanming Shen, Heng Qi, and Baocai Yin. 2021. Deep learning on traffic prediction: Methods, analysis, and future directions. IEEE Transactions on Intelligent Transportation Systems 23, 6 (2021), 4927–4943

  28. [36]

    Ailing Zeng, Muxi Chen, Lei Zhang, and Qiang Xu. 2023. Are transformers effective for time series forecasting?. In Proceedings of the AAAI conference on artificial intelligence, Vol. 37. 11121–11128

  29. [37]

    Yu Zheng, Xiuwen Yi, Ming Li, Ruiyuan Li, Zhangqing Shan, Eric Chang, and Tianrui Li. 2015. Forecasting fine-grained air quality based on big data. In Proceedings of ACM SIGKDD international conference on knowledge discovery and data mining. 2267–2276

  30. [38]

    Haoyi Zhou, Shanghang Zhang, Jieqi Peng, Shuai Zhang, Jianxin Li, Hui Xiong, and Wancai Zhang. 2021. Informer: Beyond efficient transformer for long se- quence time-series forecasting. In Proceedings of the AAAI conference on artificial intelligence, Vol. 35. 11106–11115

  31. [39]

    Tian Zhou, Ziqing Ma, Qingsong Wen, Xue Wang, Liang Sun, and Rong Jin

  32. [1990]

    Journal of Official Statistics (1990)

    STL: A Seasonal-Trend Decomposition Procedure Based on Loess. Journal of Official Statistics (1990)

  33. [2022]

    In International Conference on Machine Learning

    Fedformer: Frequency enhanced decomposed transformer for long-term series forecasting. In International Conference on Machine Learning. PMLR, 27268– 27286

  34. [2024]

    In International Conference on Machine Learning

    TSLANet: Rethinking Transformers for Time Series Representation Learn- ing. In International Conference on Machine Learning

  35. [2025]

    Artificial Intelligence Review (2025)

    A comprehensive survey of deep learning for time series forecasting: architectural diversity and open challenges. Artificial Intelligence Review (2025)

Pith tools

Reviewed August 15, 2026 · model on record in the stance chip above.