REVIEW 4 major objections 5 minor 25 references
CASA: CNN Autoencoder-based Score Attention for Efficient Multivariate Long-term Time-series Forecasting
T0 review · 4 major / 5 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read This paper claims that replacing Transformer attention scores with a CNN autoencoder makes multivariate time-series forecasting faster, lighter, and more accurate.
desk verdict A useful empirical module whose theoretical motivation is wrong; the paper deserves a serious referee after reframing. 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 central object is the score network: a 1D CNN autoencoder with an inverted bottleneck, used in place of $QK^\top/\sqrt{d_k}$. It takes the embedded feature $Z_i \in \mathbb{R}^{N\times D}$ with variates as channels, expands it through convolution into a high-dimensional latent space, then compresses back to an attention score map; softmax of that map is multiplied element-wise by the value embedding. This carries the argument because it makes query/key construction variate-dependent and keeps the overall complexity $O(NL + NLD + ND^2 + NkD^2 + NDH)$, which scales linearly in $N$, $L$, and $H$ when the hidden dimension $D$ and kernel size $k$ are treated as constants.
What would settle it
Run the Traffic benchmark at $L=96$, $H=720$, batch size 16 and measure CASA's memory and latency against iTransformer and SOFTS on identical hardware; if the reduction is only the roughly 2% gap shown in Table 1 rather than the claimed 77.7%, the central efficiency claim fails. Separately, if CASA's advantage vanishes on a dataset with weak inter-variate correlations, the cross-dimensional mechanism is not the cause.
Extended reading notes
Core claim
CASA treats each variate as a channel and replaces the affine query/key embeddings of self-attention with a 1D CNN autoencoder that approximates $QK^\top/\sqrt{d_k}$; the attention output is then softmax of the learned score, multiplied element-wise by the value embedding. The paper proves that with channel-wise tokenization the standard query and key embeddings are variate-independent (Proposition 1), and with point-wise or patch-wise tokenization they are time-independent (Proposition 2), so conventional attention scores are built without cross-variate information. The CNN score network, built as an inverted-bottleneck autoencoder, expands all variates into a high-dimensional latent space and then compresses channels, making score construction variate-dependent at claimed linear cost in $N$, $L$, and $H$. In the authors' experiments, swapping self-attention for CASA improved 40 of 42 metrics across vanilla Transformer, PatchTST, and iTransformer, and the full CASA model ranked first in 54 of 64 metrics across eight datasets.
Load-bearing premise
The efficiency story assumes the hidden dimension and kernel width are small fixed constants, but in the reported experiments those constants are large enough that quadratic terms can dominate, and the headline 77.7% memory saving is not tied to a clear baseline in the provided tables.
Editorial extensions
If this is right
- Transformer encoders for multivariate series can be made linear in variate count, input length, and horizon without sacrificing accuracy; the paper reports first place in 54 of 64 metrics across eight datasets.
- The module is a drop-in replacement: swapping self-attention for CASA improved 40 of 42 evaluated metrics across vanilla Transformer, PatchTST, and iTransformer, so no change in tokenization is required.
- On high-variate data such as Traffic with 862 channels, CASA's predicted inter-variate correlation matrix matches the ground truth more closely than the compared baselines, indicating the score network preserves cross-variate structure.
- Memory and latency shrink relative to token-based attention at fixed hardware, which makes longer lookback windows and longer forecast horizons more affordable in practice.
Reading between the lines
- The paper only evaluates forecasting; the same score-network substitution could plausibly extend to other Transformer uses where the score matrix is smooth and the token count is large, such as long-document processing or multivariate anomaly detection.
- The linear-complexity claim is asymptotic: because $D$ and $k$ are treated as constants, the practical linear scaling only appears once $L$ and $H$ are much larger than $D^2$, which is not guaranteed in the tested settings.
- A direct mechanistic test would be to train CASA on synthetic series with known but weak inter-variate correlations; if the accuracy gain over standard attention disappears, the cross-dimensional score mechanism is the active ingredient.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes CASA, a module that replaces the self-attention mechanism in Transformer encoders with a 1D CNN autoencoder that computes a per-token score map, applied element-wise to the value matrix. The authors claim that CASA approximates QK^T/sqrt(d_k) at linear complexity, reduces memory usage by up to 77.7%, accelerates inference by 44.0%, and achieves state-of-the-art results on eight multivariate long-term time-series forecasting benchmarks, ranking first in 54 of 64 metrics. The paper also reports experiments where CASA replaces attention in vanilla Transformer, PatchTST, and iTransformer, with improvements in 40 of 42 metrics, a robustness study across input lengths, and a correlation-matrix analysis on the Weather dataset.
Significance. If the theoretical framing is corrected, CASA is a potentially useful empirical contribution: a simple, model-agnostic CNN gating module with linear complexity that improves accuracy over several strong baselines, with code available and a fairly extensive evaluation across eight datasets. The formal propositions are correct but elementary; the main novelty is the module and its empirical validation, not the formal analysis. The paper would be strengthened by honest framing as a gating mechanism, by uncertainty quantification, and by consistent reporting of the abstract's claims with the full results.
major comments (4)
- [Section 3.4, Eq. (8)] The paper claims that the CNN autoencoder 'approximates QK^T/sqrt(d_k)', but the implemented operation does not have the form of an attention-score matrix product. In Eq. (8), Attention(Z_{i+1}) = softmax(Score(Z_i)) ⊛ V_{i+1}; with V_{i+1} ∈ R^{N×D} and ⊛ denoting element-wise product, Score(Z_i) is a per-token vector in R^{N×D}, not an N×N pairwise matrix. Standard self-attention in Eq. (4) produces each output row as a weighted sum of all value rows, whereas Eq. (8) only rescales each value row by a scalar gate. The convolution over variates makes the gate for row i depend on other rows, but it never aggregates or mixes values across variates. Therefore the claim that CASA approximates QK^T/sqrt(d_k), and the related narrative about repairing missing cross-variate information in attention scores, is not supported by the equations. Please reframe CASA as a CNN gating mechanism and re-derive the motivation accordingly.
- [Abstract vs. Appendix B] The abstract states 'ranking first in 87.5% of evaluated metrics', but Appendix B and Table 6 report that CASA achieves the best performance in 54 out of 64 metrics, which is 84.4%, not 87.5%. The abstract should be corrected to match the full results.
- [Section 3.4, Complexity Analysis and Appendix D] The complexity analysis concludes that the method scales linearly in N, L, and H by treating the hidden dimension D and kernel size k as constants, but in the experimental regime D≈512, and k is a small integer, so D^2 and kD^2 terms are comparable to or larger than LD and DH for L=96 and H=720 (LD≈4.9e4, D^2≈2.6e5). The linear scaling is therefore asymptotic, not empirically demonstrated at the tested operating points. In addition, Appendix D states that the Traffic efficiency experiment uses L=512 and H=96, while the forecasting results use L=96; the memory and inference numbers in Table 1 and Figure 6 thus come from a different operating point than the accuracy experiments. Please specify the exact baseline and configuration for the claimed 77.7% memory reduction; Table 1 shows CASA at 1684 MB versus SOFTS at 1720 MB, which is only about a 2% saving.
- [Tables 2, 3, and 6] All results are reported without standard deviations, confidence intervals, or the number of seeds. Many of the reported differences are small (for example, ETTm2 average MSE 0.276 versus 0.287 for SOFTS, and ECL average MSE 0.168 versus 0.174 for SOFTS), so a claim of state-of-the-art performance across 64 metrics needs evidence that the improvements are not due to training noise. Please add variance estimates at least for the main results table.
minor comments (5)
- [Section 4, Baselines] The word 'comtemporarlly' should be corrected to 'contemporary'.
- [Abstract] The word 'model-agnosticically' should be corrected to 'model-agnostically'.
- [Section 3.4, Eqs. (8)-(9)] The symbol f is used both for the affine map defining V_{i+1} and, implicitly, for the score network; please use distinct notation for these two functions.
- [Table 6] Table 6 reports results for TimesNet, Stationary, and SCINet, which are not listed among the baselines in Section 4; please add the appropriate references or explain the provenance of those numbers.
- [Section 4.4, Table 4] The text says the comparison uses 'MSE between their probability density functions (PDFs)', but the table header only says 'MSE'; please clarify the exact computation and metric name in the table.
Circularity Check
No circularity: CASA's empirical results are benchmarked externally and its complexity analysis is an operation count; the QK^T approximation claim is an unsupported assertion, not a circular reduction.
full rationale
The paper's central derived claims are the complexity/memory efficiency and the forecasting accuracy of CASA. The complexity statement in Section 3.4 is a straightforward operation count: score network O(N k D^2), embedding O(N L D), predictor O(N D H), with total O(N L + N LD + N D^2 + N kD^2 + N DH), and the linear-in-L,H,N claim follows once D and k are treated as constants. Memory and inference figures in Table 1 and Figure 6 are empirical measurements against independent baselines, and the accuracy results in Tables 2 and 6 are MSE/MAE comparisons on eight public datasets. No fitted parameter is later renamed as a prediction, and no load-bearing self-citation appears in the reference list. The statement that CASA 'approximates QK^T/sqrt(d_k)' using a CNN autoencoder is asserted as design motivation rather than derived, and Eq. (8)'s element-wise softmax(Score) ⊛ V may indeed fail to reproduce the row-mixing of softmax(QK^T)V; that is a correctness and interpretability concern, not a circularity concern, because the architecture's output is not constructed to equal the benchmark results. The paper also contains reporting inconsistencies (e.g., Appendix D lists L=512, H=96 while the main setup uses L=96; the 77.7% memory reduction is not explicitly tied to a table row), but these are presentation issues rather than circular reductions. Overall, the central empirical and efficiency claims are self-contained and externally checkable, so the circularity score is 0.
Assumptions & free parameters
free parameters (2)
- Hidden dimension D =
not reported (commonly 512)
- CNN kernel size k =
not reported
assumptions (3)
- standard math Softmax normalization and element-wise multiplication produce a valid attention-like weighting.
- domain assumption Convolution along the channel dimension captures cross-variate dependencies in multivariate time series.
- domain assumption The eight benchmark datasets are representative of multivariate LTSF problems.
Cite this review
Pith. "Pith review of CASA: CNN Autoencoder-based Score Attention for Efficient Multivariate Long-term Time-series Forecasting." pith.science (2026). https://pith.science/paper/URJD6M54
@misc{pith2026250502011,
author = {Pith},
title = {Pith review of: CASA: CNN Autoencoder-based Score Attention for Efficient Multivariate Long-term Time-series Forecasting},
year = {2026},
howpublished = {\url{https://pith.science/paper/URJD6M54}},
note = {Machine review of arXiv:2505.02011}
}
read the original abstract
Multivariate long-term time series forecasting is critical for applications such as weather prediction, and traffic analysis. In addition, the implementation of Transformer variants has improved prediction accuracy. Following these variants, different input data process approaches also enhanced the field, such as tokenization techniques including point-wise, channel-wise, and patch-wise tokenization. However, previous studies still have limitations in time complexity, computational resources, and cross-dimensional interactions. To address these limitations, we introduce a novel CNN Autoencoder-based Score Attention mechanism (CASA), which can be introduced in diverse Transformers model-agnosticically by reducing memory and leading to improvement in model performance. Experiments on eight real-world datasets validate that CASA decreases computational resources by up to 77.7%, accelerates inference by 44.0%, and achieves state-of-the-art performance, ranking first in 87.5% of evaluated metrics.
Figures
Figures from the paper (11 more)
Reference graph
Works this paper leans on
-
[1]
Representation learning: A review and new perspectives
[Bengio et al., 2013] Yoshua Bengio, Aaron Courville, and Pascal Vincent. Representation learning: A review and new perspectives. IEEE transactions on pattern analysis and machine intelligence, 35(8):1798–1828,
work page 2013
-
[4]
Synthetic data in health care: A narrative review
[Gonzales et al., 2023] Aldren Gonzales, Guruprabha Gu- ruswamy, and Scott R Smith. Synthetic data in health care: A narrative review. PLOS Digital Health, 2(1):e0000082,
work page 2023
-
[5]
Softs: Efficient multivariate time series forecasting with series-core fusion
[Han et al., 2024] Lu Han, Xu-Yang Chen, Han-Jia Ye, and De-Chuan Zhan. Softs: Efficient multivariate time series forecasting with series-core fusion. In the twelfth interna- tional conference on learning representations,
work page 2024
-
[7]
arXiv preprint arXiv:2401.01629,
-
[8]
Spatio-temporal self-supervised learning for traffic flow prediction
[Ji et al., 2023] Jiahao Ji, Jingyuan Wang, Chao Huang, Junjie Wu, Boren Xu, Zhenhe Wu, Junbo Zhang, and Yu Zheng. Spatio-temporal self-supervised learning for traffic flow prediction. In Proceedings of the AAAI con- ference on artificial intelligence, volume 37, pages 4356– 4364,
work page 2023
-
[9]
Modeling long-and short-term temporal patterns with deep neural networks
[Lai et al., 2018] Guokun Lai, Wei-Cheng Chang, Yiming Yang, and Hanxiao Liu. Modeling long-and short-term temporal patterns with deep neural networks. In The 41st international ACM SIGIR conference on research & devel- opment in information retrieval, pages 95–104,
2018
-
[11]
A time series is worth 64 words: Long-term forecasting with transformers
[Nie et al., 2022] Yuqi Nie, Nam H Nguyen, Phanwadee Sinthong, and Jayant Kalagnanam. A time series is worth 64 words: Long-term forecasting with transformers. In the tenth international conference on learning representa- tions,
work page 2022
-
[12]
Attention is all you need
[Vaswani, 2017] A Vaswani. Attention is all you need. Ad- vances in Neural Information Processing Systems,
2017
Show all 25 references
-
[16]
Re- vitalizing multivariate time series forecasting: Learnable decomposition with inter-series dependencies and intra- series variations modeling
[Yu et al., 2024] Guoqi Yu, Jing Zou, Xiaowei Hu, Angel- ica I Aviles-Rivero, Jing Qin, and Shujun Wang. Re- vitalizing multivariate time series forecasting: Learnable decomposition with inter-series dependencies and intra- series variations modeling. International conference ...
2024
-
[17]
Are transformers effective for time series fore- casting? In Proceedings of the AAAI conference on artifi- cial intelligence, volume 37, pages 11121–11128,
[Zeng et al., 2023] Ailing Zeng, Muxi Chen, Lei Zhang, and Qiang Xu. Are transformers effective for time series fore- casting? In Proceedings of the AAAI conference on artifi- cial intelligence, volume 37, pages 11121–11128,
2023
-
[18]
Crossformer: Transformer utilizing cross-dimension de- pendency for multivariate time series forecasting
[Zhang and Yan, 2023] Yunhao Zhang and Junchi Yan. Crossformer: Transformer utilizing cross-dimension de- pendency for multivariate time series forecasting. In the eleventh international conference on learning representa- tions,
2023
-
[19]
Informer: Beyond efficient transformer for long sequence time-series forecasting
[Zhou et al., 2021] Haoyi Zhou, Shanghang Zhang, Jieqi Peng, Shuai Zhang, Jianxin Li, Hui Xiong, and Wan- cai Zhang. Informer: Beyond efficient transformer for long sequence time-series forecasting. In Proceedings of the AAAI conference on artificial intelligence, volume 35, p...
2021
-
[20]
Fedformer: Fre- quency enhanced decomposed transformer for long-term series forecasting
[Zhou et al., 2022] Tian Zhou, Ziqing Ma, Qingsong Wen, Xue Wang, Liang Sun, and Rong Jin. Fedformer: Fre- quency enhanced decomposed transformer for long-term series forecasting. In International conference on machine learning, pages 27268–27286. PMLR,
2022
-
[21]
Appendix A Dataset A.1 Details of Each Dataset Data preprocessing is largely based on previous work SOFTS. We provide the dataset descriptions: • ETT (Electricity Transformer Temperature) : This dataset includes two hourly (ETTh) and two 15-minute (ETTm) variations, containing...
2016
-
[23]
• Electricity: It consists of hourly electricity usage data for 321 consumers, spanning from 2012 to
2012
-
[25]
Dimensions denotes the number of vari- ate in each dataset
Dataset Timesteps Sample Frequency Dimension Weather 52,696 10 min 21 Electricity 26,304 1 hour 321 Traffic 17,544 1 hour 862 Solar 52,560 10 min 137 ETTh1 17,420 1 hour 7 ETTh2 17,420 1 hour 7 ETTm1 69,680 15 min 7 ETTm2 69,680 15 min 7 Table 5: Characteristics of the dataset...
2024
-
[2013]
Long-term forecasting with tide: Time-series dense encoder
[Das et al., 2023] Abhimanyu Das, Weihao Kong, Andrew Leach, Shaan Mathur, Rajat Sen, and Rose Yu. Long-term forecasting with tide: Time-series dense encoder. arXiv preprint arXiv:2304.08424,
2023 arXiv
-
[2014]
• Solar-Energy: It captures solar power generation data from 137 photovoltaic plants in 2006, sampled every 10 minutes
• Weather: it contains 21 weather-related variables, such as temperature and humidity, recorded every 10 minutes throughout 2020 in Germany. • Solar-Energy: It captures solar power generation data from 137 photovoltaic plants in 2006, sampled every 10 minutes. Further details ...
2020
-
[2016]
Autoformer: Decomposition transform- ers with auto-correlation for long-term series forecast- ing
[Wu et al., 2021] Haixu Wu, Jiehui Xu, Jianmin Wang, and Mingsheng Long. Autoformer: Decomposition transform- ers with auto-correlation for long-term series forecast- ing. Advances in neural information processing systems , 34:22419–22430,
2021
-
[2017]
Deep kernel learn- ing
[Wilson et al., 2016] Andrew Gordon Wilson, Zhiting Hu, Ruslan Salakhutdinov, and Eric P Xing. Deep kernel learn- ing. In Artificial intelligence and statistics , pages 370–
2016
-
[2018]
• Traffic: This dataset represents hourly road occupancy rates gathered by sensors monitoring San Francisco free- ways from 2015 to
2015
-
[2021]
Timesnet: Temporal 2d-variation modeling for general time series analysis
[Wu et al., 2023] Haixu Wu, Tengge Hu, Yong Liu, Hang Zhou, Jianmin Wang, and Mingsheng Long. Timesnet: Temporal 2d-variation modeling for general time series analysis. In the eleventh international conference on learning representations,
2023
-
[2022]
itransformer: Inverted transformers are effective for time series forecasting
[Liu et al., 2023] Yong Liu, Tengge Hu, Haoran Zhang, Haixu Wu, Shiyu Wang, Lintao Ma, and Mingsheng Long. itransformer: Inverted transformers are effective for time series forecasting. the eleventh international conference on learning representations,
2023
-
[2023]
Tsmixer: Lightweight mlp-mixer model for multivariate time series forecasting
[Ekambaram et al., 2023] Vijay Ekambaram, Arindam Jati, Nam Nguyen, Phanwadee Sinthong, and Jayant Kalagnanam. Tsmixer: Lightweight mlp-mixer model for multivariate time series forecasting. In Proceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining...
2023
-
[2024]
Synthetic data in ai: Chal- lenges, applications, and ethical implications
[Hao et al., 2024] S Hao, W Han, T Jiang, Y Li, H Wu, C Zhong, Z Zhou, and H Tang. Synthetic data in ai: Chal- lenges, applications, and ethical implications. arxiv
2024
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.