REVIEW 4 major objections 5 minor 1 cited by
A Comparative Study of Pruning Methods in Transformer-based Time Series Forecasting
T0 review · 4 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read Unstructured magnitude pruning can remove about half of the weights from most Transformer-based time-series forecasters without meaningful loss of accuracy, while structured pruning fails to deliver real inference speedup.
desk verdict A useful but uneven benchmark: the 50% sparsity finding holds, but the no-speedup claim overstates what was actually measured. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The mechanism that carries the argument is a train-prune-fine-tune loop applied uniformly across architectures. Unstructured pruning uses a binary mask computed by PyTorch, zeroing the smallest-magnitude weights at ten sparsity levels spread in log-space ($s = 1 - 0.8^i$), with the mask retained during fine-tuning. Structured pruning uses the dependency-graph pruner from torch-pruning (DepGraph), which groups parameters by their dependencies in the forward pass and removes whole nodes (rows or columns), with density measured after pruning rather than assumed. The evaluation machinery is the comparison of test MSE, parameter density, FLOP reduction, and CUDA-event-timed inference speedup at batch size 32, plus two control studies (scaling model size down on ETTm2 and dataset size up on ENTSO-E) meant to disentangle overfitting from pruning effects.
What would settle it
Re-implement the five models with standard attention so that TensorRT or a similar sparse-kernel compiler can compile them, then measure structurally pruned inference on a low-power embedded device at batch sizes 1 and 32; if pruned Autoformer or FEDformer shows a wall-clock speedup comparable to its FLOP reduction (say above 2x), the paper's no-significant-time-savings claim for structured pruning would be falsified in that setting.
Extended reading notes
Core claim
The central discovery is a benchmark result: magnitude-based unstructured pruning is a broadly safe operation for Transformer time-series forecasters, with a 50% sparsity threshold holding across Transformer, Informer, Autoformer, FEDformer, and Crossformer on ETT, ECL, Exchange, Traffic, Weather, and ENTSO-E datasets, while the Fourier-decomposition models Autoformer and FEDformer tolerate pruning to high sparsity before losing competitive accuracy. A corollary is that the pruned models sometimes beat their dense counterparts, which the authors attribute to a regularization effect rather than a lottery-ticket phenomenon. The second discovery is negative: structured pruning via DepGraph does remove parameters and reduce FLOPs by up to a factor of about seven, yet measured inference speedup tops out around 1.5x for Informer and is near 1.0 or below for others, because the time-series-specific attention and decomposition modules dominate runtime and cannot exploit the shrunken weight matrices.
Load-bearing premise
The conclusion that structured pruning offers no significant time savings assumes that GPU timings with PyTorch's dense CUDA kernels, at batch size 32, capture the deployment setting that motivates pruning; because TensorRT compilation failed for every model, no optimized sparse kernel was ever measured.
Editorial extensions
If this is right
- With the 50% sparsity threshold confirmed across five architectures and multiple datasets, practitioners can halve the parameter count of time-series Transformers at negligible accuracy cost, and Fourier-style models can be cut to 10% of parameters when memory is the binding constraint.
- Because fine-tuning is required for most models, pruning should be part of a train-prune-fine-tune pipeline rather than an after-the-fact inference trick.
- Structured pruning's FLOP reductions (up to 7x for Informer) do not deliver commensurate wall-clock speedups on dense CUDA kernels, so FLOP counts alone overstate deployment benefits.
- On small datasets, smaller models match or beat large pruned ones, so the efficient choice is to train a small model directly; on large datasets, training big then pruning retains accuracy better than training small from scratch.
- The negative structured-pruning result localizes the runtime bottleneck: time-series-specific components such as decomposition, frequency transforms, and cross-dimension attention dominate inference, not the prunable linear layers.
Reading between the lines
- Editorial extension: the 'no significant time savings' conclusion is tied to the authors' measurement setup (A100/H100 GPUs, PyTorch native CUDA kernels, batch size 32, and a failed TensorRT compilation); on embedded CPUs or with sparse-inference engines the speedup picture could differ, and the paper itself flags this as future work.
- Editorial extension: the finding that pruned models can outperform dense ones on small datasets suggests a regularization story; a direct test would be to compare pruning at 50% sparsity against standard weight decay or dropout with matched compute.
- Editorial extension: the DepGraph failure to reach target sparsity on Autoformer and FEDformer indicates that dependency-graph grouping interacts badly with decomposition modules; a structured pruner that operates on attention heads or frequency bands might fare better.
- Editorial extension: the benchmark suggests lottery-ticket search, finding sparse subnetworks before training, may be worthwhile for these architectures, since magnitude pruning finds usable subnetworks after training; the authors mention dynamic sparse training as an open direction.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper presents a benchmark study of unstructured magnitude pruning and structured DepGraph pruning applied to five Transformer-based multivariate time-series forecasting models (Transformer, Informer, Autoformer, FEDformer, Crossformer) across several public datasets and forecasting horizons. The authors evaluate predictive performance (MSE), parameter density, FLOPs, and inference-time speedup, and add experiments with reduced model size, a larger ENTSO-E dataset, and fine-tuning after pruning. The main reported findings are that most models tolerate about 50% unstructured sparsity without major loss, Fourier-based models remain usable up to about 90% sparsity, fine-tuning is needed to recover performance, and structured pruning does not yield meaningful inference speedups even with claimed hardware and software support.
Significance. If the benchmark's conclusions are supported, this would be a useful reference for practitioners choosing pruning strategies for Transformer-based time-series models. The study's breadth is a strength: five architectures, multiple public datasets and horizons, plus dedicated ablations on model size (ETTm2) and dataset size (ENTSO-E). The authors also report failures openly, including TensorRT compilation issues for all models, which is informative for reproducibility. However, the headline speedup claim is not supported by the reported measurements, and the lack of uncertainty quantification weakens the quantitative conclusions. The benchmark's predictive-performance findings are plausible and potentially valuable, but the central claims need to be either strengthened or substantially qualified.
major comments (4)
- [Abstract and Section 5] The abstract states that 'even with corresponding hardware and software support, structured pruning is unable to provide significant time savings,' but Section 5 reports that TensorRT compilation failed for all models and that the authors 'refrained' from custom implementations. No optimized sparse kernel or compiled deployment path was ever measured. The speedups in Table 3 were obtained with native PyTorch CUDA kernels acting on the reduced dense matrices, which is not 'hardware and software support' in the sense claimed. This is an internal contradiction between the headline claim and the experimental scope. Please either measure an actual sparse/compiled inference path or restrict the claim to the kernels and runtime environment actually used.
- [Section 3.1 and Table 3] Although Section 3.1 states that all models are trained three times, Figures 1 and 2 show only point estimates with no error bars or confidence intervals, and Table 3 reports a single speedup value per model from one timing run (500 batches after 50 warm-up steps). Consequently, differences among speedups such as Transformer 1.21 vs. Crossformer 1.22, and the conclusion that only Informer shows a meaningful speedup, are not statistically supported. Please provide repeated timing measurements with standard deviations and include error bars or uncertainty bands in the pruning curves.
- [Section 4.4 and Table 4] The fine-tuning experiments are limited to a single dataset (ETTm1), a single forecasting horizon (192), and a single target density (33%). The results are also mixed: the Transformer already improves with pruning alone (0.6869 vs. 0.7256) and fine-tuning degrades it to 0.7749, while Crossformer recovers from 0.8124 to 0.3502. This single configuration does not support the abstract's general claim that 'fine-tuning pruned models is necessary.' Either extend the fine-tuning study to additional datasets/horizons or qualify the claim to the configuration tested.
- [Section 5 and Figures 1-3] The conclusion that Fourier-based models (Autoformer, FEDformer) 'retain sufficient predictive performance up to 90% sparsity' is not backed by an explicit performance criterion. The paper never defines what loss increase is considered acceptable, so 'sufficient' is not falsifiable. I recommend specifying a quantitative criterion (e.g., relative MSE increase below a stated threshold compared to the dense baseline) and applying it consistently when summarizing the sparsity robustness results.
minor comments (5)
- [Section 3.3, Eq. (2)] Equation (2) defines s = 1 - 0.8^i for i = 0,...,10, which gives eleven values including the unpruned case, not 'ten target sparsity levels.' Please clarify the count and the exact levels used.
- [Section 4.3] The phrase 'pruned to a density of d = 0.85 ≈ 0.33' is confusing: Eq. (2) defines sparsity, not density, and 0.85 does not correspond to a density of 0.33. State the target sparsity and density explicitly and reconcile the notation with Eq. (2).
- [Section 3.6] The text says the reduced-model experiments use 'ETTm2 (corresponding to our highest pruning rate),' but the preceding pruning experiments are mainly reported on ETTm1. Clarify why ETTm2 was chosen for this ablation.
- [Figures 1 and 2] The figures are dense and the caption says 'Best viewed zoomed in.' Consider plotting each model in a separate panel or using more distinguishable line styles so the results are readable in print.
- [Table 5] The column header 'ENTSO-E (large)' is misleading because the table lists both small and large variants for that dataset. Consider renaming the columns to reflect the two datasets and the two model sizes more clearly.
Circularity Check
No load-bearing circularity: the benchmark compares trained baselines against pruned models on held-out test data; the only author-overlap citations are non-essential related-work references.
full rationale
The paper is an empirical benchmark, not a derivation. Unstructured magnitude pruning is applied to trained models at pre-defined sparsity levels s = 1 - 0.8^i, and performance is measured by MSE on held-out test data; no parameter is fitted to the test set and then renamed a prediction. The structured-pruning speedup numbers (Table 3) are direct CUDA-event time ratios, not quantities implied by construction from the pruning ratio. The claimed 'even with corresponding hardware and software support' conclusion is undermined by the paper's own Section 5 admission that 'the published implementations failed to compile for all models' and that the authors 'refrained from this step'; however, this is an evidentiary and generalization gap, not circularity, since the claim is not made true by definition. The only self-citations with author overlap ([33] on pruning-after-training, [44] on an application example) appear in related-work context and are not load-bearing; the pruning-after-training claim is independently supported by [12] and by the paper's own fine-tuning experiments. The central predictive-performance findings are self-contained against external benchmarks and openly report failures (e.g., FEDformer training instability, DepGraph failing to reach target sparsity). Consistent with the rubric that self-citation is not circularity unless it carries the argument, no circular step is exhibited, so a low score is appropriate despite the validity concern about the speedup generalization.
Assumptions & free parameters
free parameters (3)
- sparsity schedule base =
s = 1 - 0.8^i for i = 0..10
- model scale-down factor for small variants =
10x smaller linear embedding layer
- ENTSO-E reduced model size =
50% of original parameter count
assumptions (5)
- domain assumption MSE test loss is the appropriate and sufficient measure of predictive performance
- domain assumption Global pruning ratios as fractions of total parameters allow fair comparison across models
- domain assumption DepGraph dependency graph correctly captures all prunable parameter groups in time-series Transformers
- domain assumption Inference timing on A100/H100 GPUs with PyTorch CUDA kernels represents target deployment hardware
- domain assumption Training settings adopted from FEDformer and Crossformer publications are appropriate for all five models
Cite this review
Pith. "Pith review of A Comparative Study of Pruning Methods in Transformer-based Time Series Forecasting." pith.science (2026). https://pith.science/paper/CCEFPV5D
@misc{pith2026241212883,
author = {Pith},
title = {Pith review of: A Comparative Study of Pruning Methods in Transformer-based Time Series Forecasting},
year = {2026},
howpublished = {\url{https://pith.science/paper/CCEFPV5D}},
note = {Machine review of arXiv:2412.12883}
}
read the original abstract
The current landscape in time-series forecasting is dominated by Transformer-based models. Their high parameter count and corresponding demand in computational resources pose a challenge to real-world deployment, especially for commercial and scientific applications with low-power embedded devices. Pruning is an established approach to reduce neural network parameter count and save compute. However, the implications and benefits of pruning Transformer-based models for time series forecasting are largely unknown. To close this gap, we provide a comparative benchmark study by evaluating unstructured and structured pruning on various state-of-the-art multivariate time series models. We study the effects of these pruning strategies on model predictive performance and computational aspects like model size, operations, and inference time. Our results show that certain models can be pruned even up to high sparsity levels, outperforming their dense counterpart. However, fine-tuning pruned models is necessary. Furthermore, we demonstrate that even with corresponding hardware and software support, structured pruning is unable to provide significant time savings.
Figures
Figures from the paper (2 more)
Forward citations
Cited by 1 Pith paper
-
AQUA: Attention via QUery mAgnitudes for Memory and Compute Efficient Inference in LLMs
A training-free method that prunes low-magnitude dimensions of projected query/key vectors in attention, cutting dot-product cost by 25% with small benchmark degradation.
Reference graph
Works this paper leans on
-
[1]
Maximiliana Behnke and Kenneth Heafield. 2020. Losing Heads in the Lottery: Pruning Transformer Attention in Neural Machine Translation. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP), Bonnie Webber, Trevor Cohn, Yulan He, and Yang Liu (Eds.). Association for Computational Linguistics, Online, 2664–2674. ...
-
[2]
Daniel Bolya, Cheng-Yang Fu, Xiaoliang Dai, Peizhao Zhang, Christoph Feichtenhofer, and Judy Hoffman. 2023. Token Merging: Your ViT But Faster. https://doi.org/10.48550/arXiv.2210.09461 arXiv:2210.09461 [cs]
-
[3]
Feiyang Chen, Ziqian Luo, Lisang Zhou, Xueting Pan, and Ying Jiang. 2024. Comprehensive Survey of Model Compression and Speed up for Vision Transformers. https://doi.org/10.48550/arXiv.2404.10407 arXiv:2404.10407 [cs]
-
[4]
Shengchao Chen, Guodong Long, Jing Jiang, and Chengqi Zhang. 2024. Personalized Adapter for Large Meteorology Model on Devices: Towards Weather Foundation Models. arXiv:2405.20348 [physics.ao-ph] https://arxiv.org/abs/2405. 20348
arXiv 2024
-
[5]
Hongrong Cheng, Miao Zhang, and Javen Qinfeng Shi. 2023. A Survey on Deep Neural Network Pruning-Taxonomy, Comparison, Analysis, and Recommendations. https://doi.org/10.48550/arXiv.2308.06767 arXiv:2308.06767 [cs]
-
[6]
Hongrong Cheng, Miao Zhang, and Javen Qinfeng Shi. 2023. A Survey on Deep Neural Network Pruning-Taxonomy, Comparison, Analysis, and Recommendations. arXiv:2308.06767 [cs.LG] https://arxiv.org/abs/2308.06767
arXiv 2023
-
[7]
Krishna Teja Chitty-Venkata, Sparsh Mittal, Murali Emani, Venkatram Vishwanath, and Arun K. Somani. 2023. A survey of techniques for optimizing transformer inference. Journal of Systems Architecture 144 (Nov. 2023), 102990. https://doi.org/10.1016/j.sysarc.2023.102990
arXiv 2023
-
[8]
Jan Debus, Charlotte Debus, Günther Dissertori, and Markus Götz. 2024. PETNet–Coincident Particle Event Detection using Spiking Neural Networks. In 2024 Neuro Inspired Computational Elements Conference (NICE) . IEEE, La Jolla, CA, USA, 1–9. https://doi.org/10.1109/NICE61972.2024.10549584
arXiv 2024
Show all 51 references
-
[9]
Dazhao Du, Bing Su, and Zhewei Wei. 2022. Preformer: Predictive Transformer with Multi-Scale Segment-wise Correlations for Long-Term Time Series Forecasting. arXiv:2202.11356 [cs.LG] https://arxiv.org/abs/2202.11356
2022 arXiv
-
[10]
Gongfan Fang, Xinyin Ma, Mingli Song, Michael Bi Mi, and Xinchao Wang. 2023. DepGraph: Towards Any Structural Pruning. In 2023 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) . IEEE Computer Society, Vancouver, BC, Canada, 16091–16101. https://doi.org/10....
2023
-
[11]
Quentin Fournier, Gaétan Marceau Caron, and Daniel Aloise. 2023. A Practical Survey on Faster and Lighter Trans- formers. Comput. Surveys 55, 14s (July 2023), 304:1–304:40. https://doi.org/10.1145/3586074
2023 doi
- [12]
-
[13]
Jianhua Gao, Bingjie Liu, Weixing Ji, and Hua Huang. 2024. A Systematic Literature Survey of Sparse Matrix-Vector Multiplication. arXiv preprint arXiv:2404.06047 55, 244 (2024), 36 pages
2024 arXiv
-
[14]
Benjamin Graham, Martin Engelcke, and Laurens van der Maaten. 2018. 3D Semantic Segmentation with Submanifold Sparse Convolutional Networks. CVPR 1 (2018), 11 pages
2018
-
[15]
Hagiwara
M. Hagiwara. 1993. Removal of hidden units and weights for back propagation networks. In Proceedings of 1993 inter- national conference on neural networks (IJCNN-93-nagoya, japan) , Vol. 1. Proceedings of 1993 International Conference on Neural, Nagoya, Japan, 351–354 vol.1. h...
1993
-
[16]
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. 2015. Deep Residual Learning for Image Recognition. arXiv:1512.03385 [cs.CV] https://arxiv.org/abs/1512.03385
2015 arXiv
-
[17]
Yang He and Lingao Xiao. 2024. Structured Pruning for Deep Convolutional Neural Networks: A survey. IEEE Transactions on Pattern Analysis and Machine Intelligence 46, 2024.05 (2024), 1–20. https://doi.org/10.1109/TPAMI. 2023.3334614 arXiv:2303.00566 [cs]
2024
- [18]
-
[19]
Ruibing Jin, Qing Xu, Min Wu, Yuecong Xu, Dan Li, Xiaoli Li, and Zhenghua Chen. 2024. LLM-based Knowledge Pruning for Time Series Data Analytics on Edge-computing Devices. arXiv:2406.08765 [cs.LG] https://arxiv.org/abs/2406.08765
2024 arXiv
-
[20]
Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei
Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B. Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei. 2020. Scaling Laws for Neural Language Models. arXiv:2001.08361 [cs.LG] https://arxiv.org/abs/2001.08361
2020 arXiv
-
[21]
Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei
Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B. Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei. 2020. Scaling Laws for Neural Language Models. https://doi.org/10.48550/arXiv.2001. 08361 arXiv:2001.08361 [cs, stat]
-
[22]
Kingma and Jimmy Ba
Diederik P. Kingma and Jimmy Ba. 2017. Adam: A Method for Stochastic Optimization. arXiv:1412.6980 [cs.LG] https://arxiv.org/abs/1412.6980
2017 arXiv
-
[23]
Yann LeCun, John Denker, and Sara Solla. 1989. Optimal Brain Damage. In Advances in Neural Information Processing Systems, D. Touretzky (Ed.), Vol. 2. Morgan-Kaufmann, San Francisco, CA, USA. https://proceedings.neurips.cc/paper_ files/paper/1989/file/6c9882bbac1c7093bd2504188...
1989
-
[24]
Tailin Liang, John Glossner, Lei Wang, Shaobo Shi, and Xiaotong Zhang. 2021. Pruning and quantization for deep neural network acceleration: A survey.Neurocomputing 461 (Oct. 2021), 370–403. https://doi.org/10.1016/j.neucom.2021.07.045
2021 doi
-
[25]
Bohan Liu, Zijie Zhang, Peixiong He, Zhensen Wang, Yang Xiao, Ruimeng Ye, Yang Zhou, Wei-Shinn Ku, and Bo Hui
-
[26]
Liu, and Schahram Dustdar
Shizhan Liu, Hang Yu, Cong Liao, Jianguo Li, Weiyao Lin, Alex X. Liu, and Schahram Dustdar. 2022. Pyraformer: Low- Complexity Pyramidal Attention for Long-Range Time Series Modeling and Forecasting. In International Conference on Learning Representations. ICLR, virtual, 20 pag...
2022
-
[27]
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 The Twelfth International Conference on Learning Representations. ICLR, Vienna, Austria, 1–25. https:...
2024
-
[28]
Jiachen Mao, Huanrui Yang, Ang Li, Hai Li, and Yiran Chen. 2021. TPrune: Efficient Transformer Pruning for Mobile Devices. ACM Trans. Cyber-Phys. Syst. 5, 3, Article 26 (apr 2021), 22 pages. https://doi.org/10.1145/3446640
2021 doi
-
[29]
Tung Nguyen, Rohan Shah, Hritik Bansal, Troy Arcomano, Sandeep Madireddy, Romit Maulik, Veerabhadra Kotamarthi, Ian Foster, and Aditya Grover. 2023. Scaling transformer neural networks for skillful and reliable medium-range weather forecasting. arXiv:2312.03876 [physics.ao-ph]...
2023 arXiv
-
[30]
Nowak, Bram Grooten, Decebal Constantin Mocanu, and Jacek Tabor
Aleksandra I. Nowak, Bram Grooten, Decebal Constantin Mocanu, and Jacek Tabor. 2023. Fantastic Weights and How to Find Them: Where to Prune in Dynamic Sparse Training. https://doi.org/10.48550/arXiv.2306.12230 arXiv:2306.12230 [cs, stat]
-
[31]
NVIDIA. 2024. TensorRT. https://github.com/NVIDIA/TensorRT. Accessed: 2024-11-23
2024
-
[32]
European Network of Transmission System Operators for Electricity. 2024. ENTSO-E. Transparency Platform. https: //transparency.entsoe.eu. Accessed: 2024-11-23
2024
-
[33]
Muhammed Öz, Nicholas Kiefer, Charlotte Debus, Jasmin Hörter, Achim Streit, and Markus Götz. 2024. Model Fusion via Neuron Transplantation. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases . Springer, Springer, virtual, 3–19
2024
-
[34]
Lorenzo Papa, Paolo Russo, Irene Amerini, and Luping Zhou. 2024. A Survey on Efficient Vision Transformers: Algorithms, Techniques, and Performance Benchmarking.IEEE Transactions on Pattern Analysis and Machine Intelligence 46, 1 (2024), 1–20. https://doi.org/10.1109/TPAMI.202...
2024
-
[35]
Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zeming Lin, Natalia Gimelshein, Luca Antiga, Alban Desmaison, Andreas Kopf, Edward Yang, Zachary DeVito, Martin Raison, Alykhan Tejani, Sasank Chilamkurthy, Benoit Steiner, Lu ...
2019
-
[36]
Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zeming Lin, Natalia Gimelshein, Luca Antiga, Alban Desmaison, Andreas Köpf, Edward Yang, Zach DeVito, Martin Raison, Alykhan Tejani, Sasank Chilamkurthy, Benoit Steiner, Lu Fan...
2019 arXiv
- [37]
-
[38]
J. F. Torres, A. M. Fernández, A. Troncoso, and F. Martínez-Álvarez. 2017. Deep Learning-Based Approach for Time Series Forecasting with Application to Electricity Load. In Biomedical Applications Based on Natural and Artificial Computing, José Manuel Ferrández Vicente, José R...
2017
- [39]
- [40]
- [41]
- [42]
-
[43]
Qingsong Wen, Tian Zhou, Chaoli Zhang, Weiqi Chen, Ziqing Ma, Junchi Yan, and Liang Sun. 2023. Transformers in Time Series: A Survey. arXiv:2202.07125 [cs.LG] https://arxiv.org/abs/2202.07125
2023 arXiv
-
[44]
Weyrauch, T
A. Weyrauch, T. Steens, O. Taubert, B. Hanke, A. Eqbal, E. Gotz, A. Streit, M. Gotz, and C. Debus. 2024. ReCycle: Fast and Efficient Long Time Series Forecasting with Residual Cyclic Transformers. In 2024 IEEE Conference on Artificial Intelligence (CAI). IEEE Computer Society,...
2024
- [45]
-
[46]
Ailing Zeng, Muxi Chen, Lei Zhang, and Qiang Xu. 2023. Are Transformers Effective for Time Series Forecasting? Proceedings of the AAAI Conference on Artificial Intelligence 37, 9 (Jun. 2023), 11121–11128. https://doi.org/10.1609/aaai. v37i9.26317
2023 doi
-
[47]
Yunhao Zhang and Junchi Yan. 2022. Crossformer: Transformer Utilizing Cross-Dimension Dependency for Multivariate Time Series Forecasting. InThe Eleventh International Conference on Learning Representations. ICLR 2023, Kigali Rwanda,
2022
- [48]
-
[49]
https://openreview.net/forum?id=vSVLM2j9eie
- [51]
-
[2024]
arXiv:2403.04861 [cs.LG] https://arxiv.org/abs/2403.04861
A Survey of Lottery Ticket Hypothesis. arXiv:2403.04861 [cs.LG] https://arxiv.org/abs/2403.04861
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.