REVIEW 3 major objections 7 minor 42 references
FLDmamba: Integrating Fourier and Laplace Transform Decomposition with Mamba for Enhanced Time Series Prediction
T0 review · 3 major / 7 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read FLDmamba claims that adding Fourier-filtered step sizes and an inverse Laplace output layer to Mamba captures multi-scale periodicity, transient dynamics, and noise robustness, yielding state-of-the-art long-term time series forecasting…
desk verdict A plausible incremental architecture for Mamba-based forecasting, but the SOTA claim rests on a contradictory benchmark protocol and needs a re-run before it is taken seriously. 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 load-bearing object is the FMamba-Mamba (FMM) block with a Fourier-filtered step size. In standard Mamba, the input-dependent step size $\Delta$ gates information flow through the hidden state; FLDmamba computes $\Delta_F$ by taking the FFT of $\Delta$, multiplying by a learnable kernel $\widetilde{W}$, and applying the inverse FFT, then uses $\Delta_F$ to discretize the state matrices $\bar{A}_F$ and $\bar{B}_F$. The other load-bearing object is the inverse Laplace transform output layer, which writes the prediction as a sum of damped cosines $A_n e^{-\sigma_n t}\cos(\omega_n t + \varphi_n)$, directly representing both transient and periodic structure. An RBF kernel smooths the input before both encoders, and the two encoders run in parallel with their outputs summed, in a residual-block style.
What would settle it
Re-run the 12 baselines under the paper's own protocol (lookback windows of 96/192/336/720, hidden sizes searched over {128,...,2048}, same learning rate schedule) and compare against FLDmamba on the same nine datasets; if the win rate drops below the reported 60 of 72, the claim fails. Alternatively, train FLDmamba with the Fourier filter disabled but every other component intact: if the performance gap does not widen as claimed, the filter mechanism is not doing the work.
Extended reading notes
Core claim
The paper's central claim is that FLDmamba, by filtering the selective state-space step size $\Delta$ through the Fourier transform and by decoding through an inverse Laplace transform, overcomes three known weaknesses of Mamba for time-series: it captures multi-scale periodicity, it models transient dynamics, and it resists data noise. Concretely, the Fourier-filtered step size $\Delta_F$ replaces the raw $\Delta$ when discretizing the state matrices $\bar{A}_F$ and $\bar{B}_F$, so the selective state space only propagates frequency components that a learnable kernel marks as relevant. The output layer then parameterizes the forecast as $\hat{Y}(t) = \sum M_n A_n e^{-\sigma_n t}\cos(\omega_n t + \varphi_n)$, whose cosine factors encode periodicity and whose exponential factors encode transient decay. The paper further claims that the RBF kernel contributes noise robustness and that the parallel FMamba-Mamba block keeps the overall complexity at $O(BLVN)$.
Load-bearing premise
The state-of-the-art claim depends on the baseline numbers taken from S-Mamba and Moirai papers being comparable to FLDmamba's own runs; if those baselines were tuned or evaluated under a different protocol, the 60-of-72 advantage could be inflated.
Editorial extensions
If this is right
- Existing Mamba-based forecasters can adopt the Fourier-filtered step size and the inverse Laplace output layer without changing asymptotic running time, since both additions cost at most $O(BLN\log L)$.
- FLDmamba could serve as a drop-in replacement for Transformer-based long-term forecasters in settings where quadratic attention cost is a bottleneck, if the reported win rate holds up.
- The reported noise-robustness advantage suggests that deployment on noisy sensor streams could see smaller forecast degradation under data corruption.
- The damped-cosine output representation gives an interpretable decomposition of a forecast into periodic cycles and decaying transients, which could aid post-hoc analysis.
Reading between the lines
- The paper does not analyze which frequency bands the learned Fourier kernel actually selects; visualizing $\widetilde{W}$ per dataset would reveal whether the gain comes mainly from denoising or from periodicity extraction.
- The damped-cosine decoder is reminiscent of exponential-sinusoidal decomposition, and a natural extension the authors do not explore is to impose sparsity on the number of terms or to allow the decay rates to vary over time.
- Because the baseline numbers are quoted from other papers, the decisive external test is a from-scratch re-implementation of all baselines under the identical protocol; until that is done, the 60-of-72 claim should be read as conditional on those quoted numbers.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes FLDmamba, a state-space model for long-term multivariate time series forecasting. The architecture combines three ideas: an RBF kernel for input smoothing; a Fourier-filtered discretization step inside a 'FMamba' layer; and an 'inverse Laplace transform' output head that parameterizes a sum of damped cosines. The authors report MSE/MAE on nine benchmark datasets and claim state-of-the-art performance in 60 of 72 cases (83.3%) against 12 Transformer-, MLP-, and SSM-based baselines, along with ablations, robustness tests, efficiency measurements, and hyperparameter studies. Code and data are promised via a GitHub URL.
Significance. If the empirical claims survive a properly controlled comparison, the paper would contribute a competitive and efficient Mamba-based forecasting architecture, and the release of code/data would aid reproducibility. The main strengths are the breadth of benchmarks, the complexity analysis showing linear-time scaling, and the explicit ablation of each component. However, the significance is currently limited by two issues: the 'inverse Laplace transform' is not a mathematical inversion (coefficients are learned), and the headline SOTA claim relies on quoted baseline numbers under an inconsistent tuning protocol without error bars. These are fixable but require substantial revision rather than minor edits.
major comments (3)
- [Section III-B5, Eq. (8)] The claimed ILT derivation is not an inversion. Eq. (8) presents Ŷ(t)=Σ A_n e^{-σ_n t} cos(ω_n t+φ_n), which is the form a true inverse Laplace transform would take for first-order poles; however, the authors then state that A_n, σ_n, ω_n, and φ_n are 'directly parameterized as learnable functions of Y(t) from the previous layer.' No constraint links these parameters to the residues β_n and poles μ_n of the Laplace-domain signal, so the module is a learned parametric basis expansion, not the inverse Laplace transform. Consequently, the paper's claim that Laplace analysis enables transient-dynamics capture is not established by the derivation; the 'w/o ILT' ablation demonstrates only that the damped-cosine head helps, not that an ILT is being performed. Please either derive an actual inversion or rename and justify the module as a Laplace-motivated head.
- [Section IV-A and Table I caption] The comparison protocol is internally inconsistent. Section IV-A states that 'we modify the hidden dimensionality of all compared algorithms within [128, 256, 512, 1024, 2048] to achieve their reported best performance, which is consistently observed at 1024,' while the Table I caption says 'All baseline results are obtained from [20] and [30].' Numbers quoted from prior papers cannot reflect the authors' hidden-size sweep. Additionally, Section II declares Moirai ([30]) 'out-of-scope for our baselines,' yet Table I credits [30] as a source. Because the 60/72 SOTA claim is the paper's central empirical contribution, the authors must rerun all baselines under the same data splits, lookback/horizon, normalization, and seeds (or clearly state the results are quoted and justify comparability).
- [Tables I and III; Figures 4-10] No uncertainty quantification is provided for any table or figure. Many of FLDmamba's reported advantages are small (e.g., ETTm1-96 MSE 0.318 vs S-Mamba 0.333; ETTm2-96 MSE 0.173 vs 0.179; Electricity-336 MSE 0.182 vs S-Mamba 0.176; Electricity average 0.170 vs 0.170). Absent error bars or a significance test, the claim that FLDmamba wins 60/72 cases could reflect seed noise. Please report mean±std over multiple runs and state whether differences are statistically significant.
minor comments (7)
- [Section IV-E] The paragraph preceding Figure 6 contains a long run of corrupted unicode sequences ('/uni0000001c/uni00000019/...') that makes the text unreadable; please repair the encoding.
- [Algorithm 1 and Section III-A] Algorithm 1 declares the output as Ŷ ∈ (B,L,V), but the problem statement in Section III-A defines predictions as (B,H,V) with horizon H; clarify how the ILT head maps to H time steps.
- [Section IV-A] The baseline taxonomy is inaccurate: DLinear is a linear/MLP model, not a Transformer-based method, and TimesNet is a 2D-variation CNN, not an MLP-based model.
- [Section III-B5] The text uses ξ_n for the decay parameter while Eq. (8) uses σ_n; standardize the notation.
- [Section IV-D] The statement that FLDmamba has '2.1× higher noise tolerance than iTransformer' is not defined; specify the metric and computation.
- [Section IV-G and Figure 9] Training time units (seconds per epoch?) and memory sizes are not stated in the figure or text; please specify.
- [Introduction, Contributions] The sentence 'FLDmamba achieves state-of-the-art (SOTA) performance on of tasks' is incomplete; please correct to 'on the majority of tasks' or similar.
Circularity Check
No significant circularity: FLDmamba's forecasts are produced by a trained parametric composition; the Laplace-based output form is an explicit modeling ansatz, and benchmark claims rest on external comparisons rather than on the model's own outputs.
full rationale
The derivation chain is self-contained in the sense required here. The forecast Y-hat is computed by a learned pipeline: RBF smoothing, an FFT-filtered step-size Delta_F in the FMamba encoder, standard Mamba layers, an FMM block, and finally a damped-cosine output layer (Eq. 8). Eq. (8) is not derived from the ground-truth Y(1); it is a parametric family obtained by stipulating first-order poles in a Laplace-domain kernel and then directly parameterizing A_n, xi_n, w_n, and phi_n as learnable functions of Y(t). That is an explicit modeling ansatz, not a hidden circularity: the coefficients are fit to minimize MSE on real data, and the prediction is a nonlinear function of the input through trained parameters. The Fourier and Laplace components are not renamed versions of the target; they are inductive biases. The paper's self-citations (e.g., refs. 6, 10, 26) are contextual and not load-bearing for the main derivation. The SOTA claim relies on Table I numbers quoted from refs. 20 and 30, and the experimental setup text says both that all compared algorithms were tuned in [128, 2048] and that all baseline methods were evaluated using their predefined settings. That is internally inconsistent and raises a fairness/reproducibility concern, but it is a correctness issue about the baseline comparison, not a reduction of the model's predictions to its inputs by construction. No fitted parameter is presented as an independent prediction, no uniqueness theorem is imported from the authors' prior work, and no ansatz is smuggled via citation. The unusual inserted fragments in the text (e.g., the incomplete contribution sentence and the unicode sequences in the Figure 6 caption) do not alter the derivation chain. Therefore no circular step is identified.
Assumptions & free parameters
free parameters (5)
- Hidden size =
1024
- Number of FLDmamba layers =
2
- Learning rate =
5e-6
- ILT component count M
- RBF kernel bandwidth
assumptions (5)
- standard math Convolution theorem for Fourier transforms
- standard math Partial fraction expansion of Laplace-domain kernels with first-order poles
- domain assumption Finite damped-sinusoid representation of target series
- domain assumption RBF smoothing preserves relevant signal
- standard math Mamba's selective SSM discretization is valid for this setting
Cite this review
Pith. "Pith review of FLDmamba: Integrating Fourier and Laplace Transform Decomposition with Mamba for Enhanced Time Series Prediction." pith.science (2026). https://pith.science/paper/KQRT4HZI
@misc{pith2026250712803,
author = {Pith},
title = {Pith review of: FLDmamba: Integrating Fourier and Laplace Transform Decomposition with Mamba for Enhanced Time Series Prediction},
year = {2026},
howpublished = {\url{https://pith.science/paper/KQRT4HZI}},
note = {Machine review of arXiv:2507.12803}
}
read the original abstract
Time series prediction, a crucial task across various domains, faces significant challenges due to the inherent complexities of time series data, including non-stationarity, multi-scale periodicity, and transient dynamics, particularly when tackling long-term predictions. While Transformer-based architectures have shown promise, their quadratic complexity with sequence length hinders their efficiency for long-term predictions. Recent advancements in State-Space Models, such as Mamba, offer a more efficient alternative for long-term modeling, but they cannot capture multi-scale periodicity and transient dynamics effectively. Meanwhile, they are susceptible to data noise issues in time series. This paper proposes a novel framework, FLDmamba (Fourier and Laplace Transform Decomposition Mamba), addressing these limitations. FLDmamba leverages the strengths of both Fourier and Laplace transforms to effectively capture both multi-scale periodicity, transient dynamics within time series data, and improve the robustness of the model to the data noise issue. Our extensive experiments demonstrate that FLDmamba achieves superior performance on time series prediction benchmarks, outperforming both Transformer-based and other Mamba-based architectures. To promote the reproducibility of our method, we have made both the code and data accessible via the following URL:{\href{https://github.com/AI4Science-WestlakeU/FLDmamba}{https://github.com/AI4Science-WestlakeU/\model}.
Figures
Figures from the paper (5 more)
Reference graph
Works this paper leans on
-
[20]
Is mamba effective for time se- ries forecasting?
Z. Wang, F. Kong, S. Feng, M. Wang, X. Yang, H. Zhao, D. Wang, and Y . Zhang, “Is mamba effective for time se- ries forecasting?” Neurocomputing, vol. 619, p. 129178, 2025
work page 2025
-
[30]
Unified training of universal time series fore- casting transformers,
G. Woo, C. Liu, A. Kumar, C. Xiong, S. Savarese, and D. Sahoo, “Unified training of universal time series fore- casting transformers,” arXiv preprint arXiv:2402.02592 , 2024
arXiv 2024
-
[1]
Analysis methods for numerical weather prediction,
A. C. Lorenc, “Analysis methods for numerical weather prediction,” Quarterly Journal of the Royal Meteorolog- ical Society, vol. 112, no. 474, pp. 1177–1194, 1986
work page 1986
-
[2]
The quiet revolution of numerical weather prediction,
P. Bauer, A. Thorpe, and G. Brunet, “The quiet revolution of numerical weather prediction,” Nature, vol. 525, no. 7567, pp. 47–55, 2015
work page 2015
-
[3]
Smart grid management & visualization: Smart power management system,
G. Q. Tang, “Smart grid management & visualization: Smart power management system,” in 2011 8th Interna- tional Conference & Expo on Emerging Technologies for a Smarter World. IEEE, 2011, pp. 1–6
work page 2011
-
[4]
Spatio-temporal graph convolutional networks: A deep learning framework for traffic forecasting,
B. Yu, H. Yin, and Z. Zhu, “Spatio-temporal graph convolutional networks: A deep learning framework for traffic forecasting,” arXiv preprint arXiv:1709.04875 , 2017
arXiv 2017
-
[5]
Adaptive graph convolutional recurrent network for traffic forecasting,
L. Bai, L. Yao et al. , “Adaptive graph convolutional recurrent network for traffic forecasting,” in International Conference on Neural Information Processing Systems (NeurIPS), 2020
work page 2020
-
[6]
Efficient Traffic Prediction Through Spatio-Temporal Distillation
Q. Zhang, X. Gao, H. Wang, S.-M. Yiu, and H. Yin, “Efficient traffic prediction through spatio-temporal dis- tillation,” arXiv preprint arXiv:2501.10459 , 2025
work page Pith review arXiv 2025
Show all 42 references
-
[7]
A survey of generative techniques for spatial-temporal data mining,
Q. Zhang, H. Wang, C. Long, L. Su, X. He, J. Chang, T. Wu, H. Yin, S.-M. Yiu, Q. Tian et al. , “A survey of generative techniques for spatial-temporal data mining,” arXiv preprint arXiv:2405.09592 , 2024
2024 arXiv
-
[8]
Automated spatio-temporal graph contrastive learning,
Q. Zhang, C. Huang, L. Xia, Z. Wang, Z. Li, and S. Yiu, “Automated spatio-temporal graph contrastive learning,” in Proceedings of the ACM Web Conference 2023 , 2023, pp. 295–305
2023
-
[9]
Spatial-temporal graph learning with adversarial contrastive adaptation,
Q. Zhang, C. Huang, L. Xia, Z. Wang, S. M. Yiu, and R. Han, “Spatial-temporal graph learning with adversarial contrastive adaptation,” in International Conference on Machine Learning. PMLR, 2023, pp. 41 151–41 163
2023
-
[10]
Beyond the time domain: Recent advances on frequency transforms in time series analysis,
Q. Zhang, P. Yang, H. Wen, X. Li, H. Wang, F. Sun, Z. Song, Z. Lai, R. Ma, R. Han et al., “Beyond the time domain: Recent advances on frequency transforms in time series analysis,” arXiv preprint arXiv:2504.07099 , 2025
2025
-
[11]
Session topic: stock market price behavior,
E. F. Fama, “Session topic: stock market price behavior,” The Journal of Finance , vol. 25, no. 2, pp. 383–417, 1970
1970
-
[12]
Stock prediction using deep learning,
R. Singh and S. Srivastava, “Stock prediction using deep learning,” Multimedia Tools and Applications , vol. 76, pp. 18 569–18 584, 2017
2017
-
[13]
Tsmixer: An all-mlp architecture for time series fore- casting,
S.-A. Chen, C.-L. Li, N. Yoder, S. O. Arik, and T. Pfister, “Tsmixer: An all-mlp architecture for time series fore- casting,” arXiv preprint arXiv:2303.06053 , 2023
2023 arXiv
-
[14]
Transformer-based multivariate time series forecasting,
M. K. Bharti, R. Wadhvani, M. Gyanchandani, and M. Gupta, “Transformer-based multivariate time series forecasting,” in 2024 IEEE International Students’ Con- ference on Electrical, Electronics and Computer Science (SCEECS). IEEE, 2024, pp. 1–6
2024
-
[15]
Attention is all you need,
A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin, “Attention is all you need,” Advances in neural informa- tion processing systems , vol. 30, 2017
2017
-
[16]
itransformer: Inverted transformers are effective for time series forecasting,
Y . Liu, T. Hu, H. Zhang, H. Wu, S. Wang, L. Ma, and M. Long, “itransformer: Inverted transformers are effective for time series forecasting,” arXiv preprint arXiv:2310.06625, 2023
2023 arXiv
-
[17]
Efficiently modeling long sequences with structured state spaces,
A. Gu, K. Goel, and C. R ´e, “Efficiently modeling long sequences with structured state spaces,” arXiv preprint arXiv:2111.00396, 2021
2021 arXiv
-
[18]
Sim- plified state space layers for sequence modeling,
J. T. Smith, A. Warrington, and S. W. Linderman, “Sim- plified state space layers for sequence modeling,” arXiv preprint arXiv:2208.04933, 2022
2022 arXiv
-
[19]
Mamba: Linear-time sequence modeling with selective state spaces,
A. Gu and T. Dao, “Mamba: Linear-time sequence modeling with selective state spaces,” arXiv preprint arXiv:2312.00752, 2023
2023 arXiv
-
[21]
Informer: Beyond efficient transformer for long sequence time-series forecasting,
H. Zhou, S. Zhang, J. Peng, S. Zhang, J. Li, H. Xiong, and W. Zhang, “Informer: Beyond efficient transformer for long sequence time-series forecasting,” in The Thirty- Fifth AAAI Conference on Artificial Intelligence, AAAI 2021, Virtual Conference, vol. 35, no. 12. AAAI Press,...
2021
-
[22]
Time-series forecasting with deep learning: a survey,
B. Lim and S. Zohren, “Time-series forecasting with deep learning: a survey,” Philosophical Transactions of the Royal Society A , vol. 379, no. 2194, p. 20200209, 2021
2021
-
[23]
Deep learning for time series forecast- ing: a survey,
J. F. Torres, D. Hadjout, A. Sebaa, F. Mart ´ınez- ´Alvarez, and A. Troncoso, “Deep learning for time series forecast- ing: a survey,” Big Data, vol. 9, no. 1, pp. 3–21, 2021
2021
-
[24]
Simba: Simplified mamba-based architecture for vision and multivariate time series,
B. N. Patro and V . S. Agneeswaran, “Simba: Simplified mamba-based architecture for vision and multivariate time series,” arXiv preprint arXiv:2403.15360 , 2024
2024 arXiv
-
[25]
Bi-mamba4ts: Bidirectional mamba for time series forecasting,
A. Liang, X. Jiang, Y . Sun, and C. Lu, “Bi-mamba4ts: Bidirectional mamba for time series forecasting,” arXiv preprint arXiv:2404.15772, 2024
2024 arXiv
-
[26]
Autohformer: Efficient hierarchical autoregressive transformer for time series prediction,
Q. Zhang, H. Wen, M. Li, D. Huang, S.-M. Yiu, C. S. Jensen, and P. Li `o, “Autohformer: Efficient hierarchical autoregressive transformer for time series prediction,” arXiv preprint arXiv:2506.16001 , 2025
2025
-
[27]
Pyraformer: Low-complexity pyrami- dal attention for long-range time series modeling and forecasting,
S. Liu, H. Yu, C. Liao, J. Li, W. Lin, A. X. Liu, and S. Dustdar, “Pyraformer: Low-complexity pyrami- dal attention for long-range time series modeling and forecasting,” in International conference on learning representations, 2021
2021
-
[28]
Fedformer: Frequency enhanced decomposed transformer for long-term series forecasting,
T. Zhou, Z. Ma, Q. Wen, X. Wang, L. Sun, and R. Jin, “Fedformer: Frequency enhanced decomposed transformer for long-term series forecasting,” in Interna- tional conference on machine learning . PMLR, 2022, pp. 27 268–27 286
2022
-
[29]
Crossformer: Transformer utilizing cross-dimension dependency for multivariate time series forecasting,
Y . Zhang and J. Yan, “Crossformer: Transformer utilizing cross-dimension dependency for multivariate time series forecasting,” in The eleventh international conference on learning representations, 2022
2022
-
[31]
Comparing support vector machines with gaussian kernels to radial basis function classifiers,
B. Scholkopf, K.-K. Sung, C. J. Burges, F. Girosi, P. Niyogi, T. Poggio, and V . Vapnik, “Comparing support vector machines with gaussian kernels to radial basis function classifiers,” IEEE transactions on Signal Pro- cessing, vol. 45, no. 11, pp. 2758–2765, 1997
1997
-
[32]
Combining recurrent, convolutional, and continuous-time models with linear state space lay- ers,
A. Gu, I. Johnson, K. Goel, K. Saab, T. Dao, A. Rudra, and C. R ´e, “Combining recurrent, convolutional, and continuous-time models with linear state space lay- ers,” Advances in neural information processing systems , vol. 34, pp. 572–585, 2021
2021
-
[33]
Deep residual learning for image recognition,
K. He, X. Zhang, S. Ren, and J. Sun, “Deep residual learning for image recognition,” in Proceedings of the IEEE conference on computer vision and pattern recog- nition, 2016, pp. 770–778
2016
-
[34]
Laplace transform and its applications into dynamic systems: a review,
W. R. B. Camacho, J. Y . R. Gonz ´alez, and A. E. D ´ıaz, “Laplace transform and its applications into dynamic systems: a review,” Visi´on electr ´onica, vol. 2, no. 1, pp. 199–215, 2019
2019
-
[35]
Expanding the prediction capacity in long sequence time-series forecasting,
H. Zhou, J. Li, S. Zhang, S. Zhang, M. Yan, and H. Xiong, “Expanding the prediction capacity in long sequence time-series forecasting,” Artificial Intelligence, vol. 318, p. 103886, 2023
2023
-
[36]
Autoformer: De- composition transformers with auto-correlation for long- term series forecasting,
H. Wu, J. Xu, J. Wang, and M. Long, “Autoformer: De- composition transformers with auto-correlation for long- term series forecasting,” Advances in neural information processing systems, vol. 34, pp. 22 419–22 430, 2021
2021
-
[37]
Are transform- ers effective for time series forecasting?
A. Zeng, M. Chen, L. Zhang, and Q. Xu, “Are transform- ers effective for time series forecasting?” in Proceedings of the AAAI conference on artificial intelligence , vol. 37, no. 9, 2023, pp. 11 121–11 128
2023
-
[38]
Long time series of ocean wave prediction based on patchtst model,
X. Huang, J. Tang, and Y . Shen, “Long time series of ocean wave prediction based on patchtst model,” Ocean Engineering, vol. 301, p. 117572, 2024
2024
-
[39]
Timesnet: Temporal 2d-variation modeling for general time series analysis,
H. Wu, T. Hu, Y . Liu, H. Zhou, J. Wang, and M. Long, “Timesnet: Temporal 2d-variation modeling for general time series analysis,” in The eleventh international con- ference on learning representations , 2022
2022
-
[40]
Revisiting long-term time series forecasting: An investigation on linear mapping,
Z. Li, S. Qi, Y . Li, and Z. Xu, “Revisiting long-term time series forecasting: An investigation on linear mapping,” arXiv preprint arXiv:2305.10721 , 2023
2023 arXiv
-
[41]
Long-term forecasting with tide: Time-series dense encoder,
A. Das, W. Kong, A. Leach, S. Mathur, R. Sen, and R. Yu, “Long-term forecasting with tide: Time-series dense encoder,” arXiv preprint arXiv:2304.08424 , 2023
2023 arXiv
-
[42]
Sst: Multi-scale hybrid mamba-transformer experts for long-short range time series forecasting
X. Xu, C. Chen, Y . Liang, B. Huang, G. Bai, L. Zhao, and K. Shu, “Sst: Multi-scale hybrid mamba-transformer experts for long-short range time series forecasting.”
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.