REVIEW 4 major objections 5 minor 1 cited by
QuLTSF: Long-Term Time Series Forecasting with Quantum Machine Learning
T0 review · 4 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read A hybrid quantum-classical model called QuLTSF is claimed to beat classical linear and transformer baselines on the Weather benchmark for long-term time series forecasting.
desk verdict First QML shot at LTSF with public code, but the 'wins in all 4 cases' claim rests on borrowed baselines and single-run numbers. 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 QuLTSF architecture itself: a hybrid quantum-classical model in which a variational quantum circuit (a hardware-efficient ansatz composed of trainable single-qubit gates and fixed entangling CNOT gates) sits between two classical linear layers. Amplitude embedding converts the classical linear layer's output into a quantum state, and the expectation values of Pauli-Z observables on each qubit form the quantum layer's output, which a final linear layer maps to the forecast. This design directly extends the simple Linear model of Zeng et al. by inserting a parameterized quantum feature map, and all parameters of the quantum and classical layers are trained jointly with an Adam optimizer to minimize MSE.
What would settle it
Re-run QuLTSF and the Linear, NLinear, and DLinear baselines on the Weather dataset using the same code pipeline, same 70/20/10 data split, same normalization, and multiple random seeds; if QuLTSF does not consistently achieve lower MSE and MAE than all three linear baselines across the four prediction horizons, the paper's central claim fails.
Extended reading notes
Core claim
QuLTSF is a simple three-part architecture: a classical input layer maps each univariate series of length L to a 2N-dimensional vector, amplitude embedding encodes that vector into the state of N=10 qubits, a hardware-efficient ansatz with K=3 layers applies parametrized single-qubit rotations and fixed CNOT entangling gates, and the Pauli-Z expectation values are passed through a classical output layer to produce the T-step forecast. With look-back length L=336 and prediction lengths T in {96, 192, 336, 720}, the authors report that QuLTSF outperforms all six baselines—Linear, NLinear, DLinear, FEDformer, Autoformer, and Informer—in every setting. Additional experiments with varying sequence lengths for T=96 and T=720 show QuLTSF consistently beating the three classical linear baselines. The paper also notes that in two settings QuLTSF is comparable to or slightly better than the more recent PatchTST and MTST transformer models.
Load-bearing premise
The comparison assumes that the baseline numbers quoted from Zeng et al. (2023) were produced under the same data split, normalization, and evaluation protocol used for QuLTSF, since the baselines were not re-run by the authors.
Editorial extensions
If this is right
- If the reported results are correct, a relatively small 10-qubit variational circuit can improve forecasting accuracy over purely classical linear models on at least one standard benchmark.
- The claimed improvements appear across all tested prediction lengths, suggesting the benefit is not limited to one specific horizon.
- QuLTSF's performance being comparable to or better than PatchTST and MTST in limited settings suggests a quantum hidden layer may be competitive with more elaborate classical preprocessing and attention architectures.
- The paper opens the possibility of applying hybrid quantum-classical models more broadly to long-term forecasting problems in weather, finance, and other domains.
Reading between the lines
- Editorial inference: The paper does not report error bars or multiple-seed statistics, so a natural next step is to re-run QuLTSF and the classical baselines under an identical preprocessing pipeline to see whether the MSE gap is stable or within run-to-run noise.
- Editorial inference: If the quantum layer's benefit is real, the likely mechanism is that the variational circuit supplies a rich nonlinear feature map that the purely linear model lacks; this suggests testing the same architecture on other high-dimensional regression tasks where linear baselines are strong.
- Editorial inference: The choice of ansatz, the number of qubits, and the number of circuit layers may strongly affect the result, so a systematic ansatz search over the Weather dataset could reveal whether the reported advantage is tied to this specific circuit or generalizes across circuit designs.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes QuLTSF, a hybrid quantum-classical model for long-term time series forecasting (LTSF), in which a classical linear layer maps the input to a 2N-dimensional vector, a 10-qubit hardware-efficient ansatz with K=3 layers processes an amplitude-encoded state, and a final classical linear layer outputs the T-step forecast. The authors evaluate QuLTSF on the Weather dataset with a fixed look-back length L=336 and prediction lengths T in {96,192,336,720}, and report that it outperforms Linear, NLinear, DLinear, FEDformer, Autoformer, and Informer on both MSE and MAE in all four settings (Section 5.5, Table 1). They also report experiments with varying sequence length L (Figures 2-3). The central claim is that inserting a variational quantum layer into a simple linear forecasting model yields consistent gains over classical linear and transformer baselines.
Significance. If the empirical claim were established, the paper would provide evidence that a variational quantum circuit can improve a classical linear forecasting pipeline, which is a useful contribution to the emerging QML-for-time-series literature. The model itself is transparent and easy to reproduce, the equations in Section 4 are coherent, and the authors provide public code, which are strengths. However, the significance is currently limited by the evidence base: the evaluation uses a single dataset, a single run per configuration, and baseline numbers quoted from prior work rather than recomputed under the same pipeline. Because several of the reported margins are small (e.g., T=720 MSE 0.315 vs 0.323 for DLinear; MAE 0.346 vs 0.348 for NLinear), the paper's central claim is not yet supported at the standard expected for a 'state-of-the-art' comparison. The architecture and training procedure are sound, but the empirical validation needs substantial strengthening before the superiority claim can be accepted.
major comments (4)
- [Table 1, Section 5.5] The headline claim that "QuLTSF outperform all the baseline models in all 4 cases" rests on a comparison between QuLTSF results produced by the authors and baseline numbers quoted from (Zeng et al., 2023), as stated in the Table 1 footnote. The paper does not specify the normalization, scaling, or exact train/validation/test split boundaries used for QuLTSF; Section 5.1 only gives a 70/20/10 split. If the QuLTSF preprocessing pipeline differs from that used to generate the quoted baseline numbers, the MSE and MAE values are not comparable even when L and T match. The authors should re-run all baselines in their own pipeline, or at minimum demonstrate that their preprocessing and split are identical to those in the source of the quoted numbers.
- [Section 5.4, Table 1] No error bars, confidence intervals, or repeated-seed statistics are reported. Section 5.4 lists hyperparameters (N=10, K=3, batch size 16, learning rate 0.0001) but does not state how many random seeds or initializations were used. This matters because several of the reported gains are small: at T=720, QuLTSF's MSE is 0.315 versus DLinear's 0.323, and its MAE is 0.346 versus NLinear's 0.348. Without uncertainty quantification, the observed differences can easily be within seed-to-seed or optimization-run variation, so the claim of consistent superiority is not established. The authors should provide multiple-seed results with mean and standard deviation, and ideally a significance test.
- [Section 5.6] The discussion introduces comparisons to PatchTST and MTST that qualify the earlier universal-superiority claim. For L=336, T=336, the paper reports QuLTSF MSE 0.248 versus PatchTST 0.249 and MTST 0.246; QuLTSF is not the best among these. The text says QuLTSF is "outperforms or comparable" to these models, but this contradicts the unqualified wording in Section 5.5 that QuLTSF outperforms all baselines in all cases. The authors should state the precise scope of the claim (e.g., limited to the baselines in Table 1) and ensure that comparisons to models outside Table 1 are accompanied by the same comparability evidence as the main table.
- [Section 4, Equations (2)-(4); Section 6] The conclusion states that "incorporating a hidden quantum layer yielded additional improvements," but no ablation is provided that isolates the effect of the quantum layer. QuLTSF contains trainable parameters in the input linear layer, the VQC, and the output linear layer, whereas the Linear baseline is a single linear map. It is therefore possible that any measured improvement (if real) comes from additional model capacity or the nonlinearity introduced by the input projection, rather than from the quantum circuit per se. A controlled comparison against a purely classical model with a comparable nonlinear hidden layer and a similar parameter count is needed to support the attribution in the conclusion.
minor comments (5)
- [Section 1] There are several typographical errors: "import problem" should be "important problem," and "strain's the models predictive capacity" should be "strains the model's predictive capacity." These should be corrected in revision.
- [Figures 2 and 3] The figures plot MSE for varying L but do not show error bars, markers, or legend entries that distinguish repeated runs. It is unclear whether each curve is a single run, and the y-axis ranges make the small differences between curves difficult to assess. Adding standard-deviation bands or at least markers and a clear caption would help.
- [Section 5.1] The abstract says "extensive experiments on a widely used weather dataset," but only one dataset is used. Either the wording should be softened to reflect the single-dataset evaluation, or additional datasets should be added.
- [References] Some reference names are typeset with spacing artifacts, e.g., "V aswani" for Vaswani and "Y ou" for You. These formatting issues should be fixed in the final manuscript.
- [Section 5.6] When citing numbers from (Zhang et al., 2024) for PatchTST and MTST, the text says "Table 2 in (Zhang et al., 2024)" but the reader must cross-check Table 1 of this paper. It would be clearer to include these comparisons in a dedicated table with the same provenance and preprocessing details as Table 1.
Circularity Check
No load-bearing circularity; only a minor background self-citation appears in the paper.
full rationale
The paper's central claim is empirical: QuLTSF is trained on the training portion of the Weather dataset and evaluated on the held-out test portion, so no prediction is derived from its own inputs by construction. The forward model in Eqs. (2)-(4) defines the output as a composition of a classical linear layer, a variational quantum circuit, and another linear layer; the superiority claim is a comparison of test-set MSE and MAE values, not a mathematical consequence of the model definition. The only citation involving the present authors is Binder et al. (2018), used in the introduction as background on recurrent quantum circuits; it does not justify the QuLTSF architecture or the reported benchmark results and is therefore not load-bearing. The reliance on baseline numbers taken from Zeng et al. (2023) raises a comparability risk about preprocessing and evaluation protocol, but that is an experimental-design concern, not circularity: no parameter is fitted to the test set and then renamed a prediction, and no equation reduces to itself. Accordingly, the circularity score is low.
Assumptions & free parameters
free parameters (5)
- Number of qubits N =
10
- Number of ansatz layers K =
3
- Adam learning rate =
0.0001
- Batch size =
16
- Model weights (Win, bin, VQC parameters, Wout, bout) =
Trained on Weather training split
assumptions (4)
- domain assumption Amplitude embedding normalizes the 2N-dimensional input vector, discarding overall scale information.
- domain assumption Channel independence: each of the M variates is modeled separately, assuming no cross-variate information is needed.
- ad hoc to paper Baseline results from (Zeng et al., 2023) are directly comparable to QuLTSF results, implying identical preprocessing, split, and evaluation.
- standard math Postulates of quantum mechanics (Born rule, unitary evolution) are used without proof.
Cite this review
Pith. "Pith review of QuLTSF: Long-Term Time Series Forecasting with Quantum Machine Learning." pith.science (2026). https://pith.science/paper/W6E4JXHZ
@misc{pith2026241213769,
author = {Pith},
title = {Pith review of: QuLTSF: Long-Term Time Series Forecasting with Quantum Machine Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/W6E4JXHZ}},
note = {Machine review of arXiv:2412.13769}
}
read the original abstract
Long-term time series forecasting (LTSF) involves predicting a large number of future values of a time series based on the past values. This is an essential task in a wide range of domains including weather forecasting, stock market analysis and disease outbreak prediction. Over the decades LTSF algorithms have transitioned from statistical models to deep learning models like transformer models. Despite the complex architecture of transformer based LTSF models `Are Transformers Effective for Time Series Forecasting? (Zeng et al., 2023)' showed that simple linear models can outperform the state-of-the-art transformer based LTSF models. Recently, quantum machine learning (QML) is evolving as a domain to enhance the capabilities of classical machine learning models. In this paper we initiate the application of QML to LTSF problems by proposing QuLTSF, a simple hybrid QML model for multivariate LTSF. Through extensive experiments on a widely used weather dataset we show the advantages of QuLTSF over the state-of-the-art classical linear models, in terms of reduced mean squared error and mean absolute error.
Figures
Forward citations
Cited by 1 Pith paper
-
A Quantum-Classical Hybrid Framework for Multivariate Time-Series Forecasting Complexity-Fidelity Trade-offs and Limitations
A trainable 6-qubit-per-channel variational circuit plus linear readout roughly matches transformer forecasters at short horizons on ETT/Weather/Electricity benchmarks, but the reported setup does not match the paper'...
Reference graph
Works this paper leans on
-
[1]
write newline
" write newline "" before.all 'output.state := FUNCTION fin.entry add.period write newline FUNCTION new.block output.state before.all = 'skip after.block 'output.state := if FUNCTION new.sentence output.state after.block = 'skip output.state before.all = 'skip after.sentence 'output.state := if if FUNCTION not #0 #1 if FUNCTION and 'skip pop #0 if FUNCTIO...
-
[2]
Bai, S., Kolter, J. Z., and Koltun, V. (2018). An empirical evaluation of generic convolutional and recurrent networks for sequence modeling. arXiv preprint arXiv:1803.01271
arXiv 2018
-
[3]
S., Alonso-Linaje, G., AkashNarayanan, B., Asadi, A., et al
Bergholm, V., Izaac, J., Schuld, M., Gogolin, C., Ahmed, S., Ajith, V., Alam, M. S., Alonso-Linaje, G., AkashNarayanan, B., Asadi, A., et al. (2018). Pennylane: Automatic differentiation of hybrid quantum-classical computations. arXiv preprint arXiv:1811.04968
arXiv 2018
-
[4]
Binder, F. C., Thompson, J., and Gu, M. (2018). Practical unitary simulator for non-markovian complex processes. Physical review letters , 120(24):240502
work page 2018
-
[5]
E., Jenkins, G
Box, G. E., Jenkins, G. M., Reinsel, G. C., and Ljung, G. M. (2015). Time series analysis: forecasting and control . John Wiley & Sons
2015
-
[6]
Ceschini, A., Rosato, A., and Panella, M. (2022). Hybrid quantum-classical recurrent neural networks for time series prediction. In 2022 International Joint Conference on Neural Networks (IJCNN) , pages 1--8
work page 2022
-
[7]
Du, Y., Huang, T., You, S., Hsieh, M.-H., and Tao, D. (2022). Quantum circuit architecture search for variational quantum algorithms. npj Quantum Information , 8(1):62
work page 2022
-
[8]
Emmanoulopoulos, D. and Dimoska, S. (2022). Quantum machine learning in finance: Time series forecasting. arXiv preprint arXiv:2202.00599
arXiv 2022
Show all 32 references
-
[9]
Grover, L. K. (1996). A fast quantum mechanical algorithm for database search. In Proceedings of the twenty-eighth annual ACM symposium on Theory of computing , pages 212--219
1996
-
[10]
Hamilton, J. D. (2020). Time series analysis . Princeton university press
2020
-
[11]
Hyndman, R. (2018). Forecasting: principles and practice . OTexts
2018
-
[12]
Kim, T., Kim, J., Tae, Y., Park, C., Choi, J.-H., and Choo, J. (2021). Reversible instance normalization for accurate time-series forecasting against distribution shift. In International Conference on Learning Representations
2021
-
[13]
Kingma, D. P. and Ba, J. (2017). Adam: A method for stochastic optimization
2017
-
[14]
Li, S., Jin, X., Xuan, Y., Zhou, X., Chen, W., Wang, Y.-X., and Yan, X. (2019). Enhancing the locality and breaking the memory bottleneck of transformer on time series forecasting. Advances in neural information processing systems , 32
2019
-
[15]
Lidar, D. A. and Brun, T. A. (2013). Quantum error correction . Cambridge university press
2013
-
[16]
and Zohren, S
Lim, B. and Zohren, S. (2021). Time-series forecasting with deep learning: a survey. Philosophical Transactions of the Royal Society A , 379(2194):20200209
2021
-
[17]
X., and Dustdar, S
Liu, S., Yu, H., Liao, C., Li, J., Lin, W., Liu, A. X., and Dustdar, S. (2022). Pyraformer: Low-complexity pyramidal attention for long-range time series modeling and forecasting. In International Conference on Learning Representations
2022
-
[18]
H., Sinthong, P., and Kalagnanam, J
Nie, Y., Nguyen, N. H., Sinthong, P., and Kalagnanam, J. (2023). A time series is worth 64 words: Long-term forecasting with transformers. In The Eleventh International Conference on Learning Representations
2023
-
[19]
Nielsen, M. A. and Chuang, I. L. (2010). Quantum computation and quantum information . Cambridge university press
2010
-
[20]
Preskill, J. (2018). Quantum computing in the nisq era and beyond. Quantum , 2:79
2018
-
[21]
Salinas, D., Flunkert, V., Gasthaus, J., and Januschowski, T. (2020). Deepar: Probabilistic forecasting with autoregressive recurrent networks. International journal of forecasting , 36(3):1181--1191
2020
-
[22]
and Petruccione, F
Schuld, M. and Petruccione, F. (2021). Machine learning with quantum computers , volume 676. Springer
2021
-
[23]
Shor, P. (1994). Algorithms for quantum computation: discrete logarithms and factoring. In Proceedings 35th Annual Symposium on Foundations of Computer Science , pages 124--134
1994
-
[24]
Simeone, O. (2022). An introduction to quantum machine learning for engineers. Found. Trends Signal Process. , 16(1–2):1–223
2022
-
[25]
Vaswani, A. (2017). Attention is all you need. Advances in Neural Information Processing Systems. Neural information processing systems foundation , page 5999
2017
-
[26]
Wen, Q., Zhou, T., Zhang, C., Chen, W., Ma, Z., Yan, J., and Sun, L. (2023). Transformers in time series: a survey. In Proceedings of the Thirty-Second International Joint Conference on Artificial Intelligence , pages 6778--6786
2023
-
[27]
Wu, H., Xu, J., Wang, J., and Long, M. (2021). Autoformer: Decomposition transformers with auto-correlation for long-term series forecasting. Advances in neural information processing systems , 34:22419--22430
2021
-
[28]
E., Kong, J
You, J.-B., Koh, D. E., Kong, J. F., Ding, W.-J., Png, C. E., and Wu, L. (2021). Exploring variational quantum eigensolver ansatzes for the long-range xy model. arXiv preprint arXiv:2109.00288
2021 arXiv
-
[29]
Zeng, A., Chen, M., Zhang, L., and Xu, Q. (2023). Are transformers effective for time series forecasting? In Proceedings of the AAAI conference on artificial intelligence , volume 37, pages 11121--11128
2023
-
[30]
Zhang, Y., Ma, L., Pal, S., Zhang, Y., and Coates, M. (2024). Multi-resolution time-series transformer for long-term forecasting. In International Conference on Artificial Intelligence and Statistics , pages 4222--4230. PMLR
2024
-
[31]
Zhou, H., Zhang, S., Peng, J., Zhang, S., Li, J., Xiong, H., and Zhang, W. (2021). Informer: Beyond efficient transformer for long sequence time-series forecasting. In Proceedings of the AAAI conference on artificial intelligence , volume 35, pages 11106--11115
2021
-
[32]
Zhou, T., Ma, Z., Wen, Q., Wang, X., Sun, L., and Jin, R. (2022). Fedformer: Frequency enhanced decomposed transformer for long-term series forecasting. In International conference on machine learning , pages 27268--27286. PMLR
2022
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.