REVIEW 4 major objections 6 minor 9 cited by
Time-VLM: Exploring Multimodal Vision-Language Models for Augmented Time Series Forecasting
T0 review · 4 major / 6 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read Frozen vision-language embeddings improve few-shot time series forecasts.
desk verdict Time-VLM is a plausible engineering contribution whose abstract overclaims: the paper's own tables show the method losing on ECL and Traffic and on 5 of 8 zero-shot transfer tasks, but the architecture and ablations still deserve a serious referee. 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 mechanism is the frozen ViLT backbone, a lightweight vision-language transformer pretrained on COCO, combined with three modality transformers. The retrieval-augmented learner produces temporal patch embeddings refined by a memory bank with top-k cosine retrieval and a global multi-head self-attention summary. The vision-augmented learner converts the series into a 64 by 64 RGB image whose channels encode raw values, FFT magnitudes, and sine/cosine periodicity, then interpolates and normalizes the pixels to [0,255] for the VLM. The text-augmented learner concatenates task, domain, statistic, and image-description tokens. Cross-modal multi-head attention uses temporal features as queries and VLM embeddings as keys and values, followed by a gated sum; only these lightweight components and the prediction head are trainable while the VLM stays frozen.
What would settle it
Train the exact Time-VLM pipeline on the few-shot ETT benchmarks with the frozen VLM replaced by the same architecture with randomly initialized weights that are never updated. If the few-shot gains over a temporal-only baseline do not disappear, then the pretrained VLM's cross-modal knowledge is not what drives the improvement; the paper's own ViT plus BERT custom comparison falls short of this test because that baseline uses separately pretrained encoders, not destroyed joint alignment.
Extended reading notes
Core claim
Time-VLM's discovery, as the authors state it, is that a frozen pretrained vision-language model can act as a bridge that aligns temporal, visual, and textual representations of a time series, and that this alignment transfers to forecasting. Three learners feed the VLM: a retrieval-augmented learner that patches the series and maintains a memory bank of historical patch embeddings; a vision-augmented learner that converts the series into a multi-channel image via FFT, periodicity encoding, and multi-scale convolution; and a text-augmented learner that writes prompts containing statistics, periodicity, and domain context. The VLM's embeddings are fused with the temporal features through cross-modal attention and a gated mechanism, and a lightweight predictor outputs the forecast. The paper's headline evidence is in the few-shot (5% and 10% training data) and zero-shot cross-domain settings, where Time-VLM beats Time-LLM and other text-augmented baselines while using about one twentieth of the parameters.
Load-bearing premise
The framework assumes that a vision-language model pretrained on natural photographs and captions already knows something useful about synthetic images of time series and their text statistics, and that this knowledge transfers to forecasting, even though the paper's own visualization shows its pretrained image and text clusters sitting far from time series embeddings.
Editorial extensions
If this is right
- Time-VLM reports lower MSE and MAE than Time-LLM on most few-shot (5% and 10%) and zero-shot ETT transfers while using roughly one twentieth of the parameters.
- On the M4 benchmark, Time-VLM achieves the best SMAPE, MASE, and OWA among the compared methods, including N-HiTS and N-BEATS.
- The framework operates on raw series alone: text prompts and images are generated from the input itself, so no external auxiliary data is required at inference time.
- Long-term forecasting on Weather, ECL, and Traffic shows competitive but not uniformly best results, with the paper stating that full-shot performance slightly lags specialized unimodal models on ECL and Traffic.
Reading between the lines
- The ablation (vision 9.0%, text 2.1%, temporal 35.6%) suggests that most of the few-shot gain may come from the retrieval-augmented temporal learner rather than from the VLM's cross-modal knowledge, a hypothesis the paper does not directly test with a VLM-free version of the full pipeline.
- Because the paper's own UMAP shows COCO image and text embeddings isolated from time series embeddings, a natural extension is to pretrain the VLM on time series-specific image-text pairs, such as rendered series with generated captions, which the authors list as future work and which would directly test the transfer premise.
- A testable extension is to vary the image rendering pipeline (line graph, recurrence plot, or the proposed FFT plus periodicity image) under a fixed VLM to see whether visual representation quality, rather than the VLM itself, drives the vision branch's 9.0% contribution.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Time-VLM, a multimodal framework for time series forecasting that combines a retrieval-augmented temporal branch (RAL), a vision branch (VAL) that converts time series into images via FFT/periodicity encodings and multi-scale convolutions, and a text branch (TAL) that generates statistical and contextual descriptions. The three branches are processed by a frozen VLM (ViLT by default) and fused through cross-modal attention and gating, then trained end-to-end with MSE. The model is evaluated on ETT, Weather, ECL, Traffic, and M4 benchmarks under full-shot, few-shot (5%/10%), and zero-shot (cross-domain ETT) settings. The paper claims superior performance, especially in few-shot and zero-shot scenarios, and attributes the gains to pre-trained VLM knowledge.
Significance. The idea of exploiting a frozen VLM to unify temporal, visual, and textual modalities is timely and original, and the released code plus the custom ViT+BERT control (Table 8) are good scientific practices. If the empirical claims held, the framework would be a useful addition to the multimodal forecasting toolbox, with the practical advantage of being much smaller than Time-LLM. However, the current evidence only partially supports the headline claims: the gains are concentrated on the ETT and Weather datasets, while Time-VLM loses to Time-LLM on ECL and Traffic in both few-shot and full-shot settings, and the zero-shot superiority is not consistently observed. The paper's own ablations indicate that the temporal RAL module, not the VLM-based vision/text branches, is the main contributor to accuracy.
major comments (4)
- [Section 4.2, Table 3] The text states that Time-VLM 'consistently outperforms or matching' baselines in zero-shot, but against Time-LLM it wins on only 3 of 8 ETT transfer tasks (ETTh1→ETTh2, ETTm1→ETTh2, ETTm1→ETTm2) and loses on the remaining 5, sometimes by large margins (e.g., ETTh1→ETTm2 MSE 0.293 vs 0.273; ETTh2→ETTh1 MSE 0.496 vs 0.479). The abstract's claim of 'superior performance, particularly in zero-shot' is therefore contradicted by the full results in Table 14.
- [Section 4.1, Tables 1-2] In few-shot settings, Time-VLM is best on the ETT datasets and Weather but is worse than Time-LLM (and several other baselines) on ECL and Traffic; e.g., at 5% training, ECL MSE is 0.218 vs 0.179 for Time-LLM and Traffic MSE is 0.558 vs 0.423 for Time-LLM. The paper's summary that Time-VLM 'consistently outperforms most baselines across datasets' is technically true only if 'most' is read as 'more than half,' but the claimed 'particularly in few-shot' superiority is not supported on two of the seven datasets.
- [Section 4, Appendices A-B] No error bars, confidence intervals, or significance tests are reported for any experiment. Many reported improvements are small (e.g., Weather full-shot MSE 0.224 vs 0.225 for Time-LLM; M4 overall SMAPE 11.894 vs 11.983), so without variance estimates or multiple seeds, the reader cannot determine whether the observed differences are real or within run-to-run noise.
- [Section 4.5, Table 6 and Table 8] The ablations attribute 35.6% MSE degradation to removing RAL, 9.0% to removing VAL, and 2.1% to removing TAL. Additionally, replacing the VLM with separate ViT+BERT encoders costs only 0.012 MSE (0.348 vs 0.336) on ETTh2. These results weaken the paper's central claim that the VLM's pre-trained cross-modal alignment is the key driver of performance; the evidence suggests the retrieval-augmented temporal branch is the dominant contributor. The discussion should be reweighted accordingly.
minor comments (6)
- [Abstract and Section 5] The limitations acknowledged in the paper (full-shot performance lags on ECL/Traffic; TAL has limited impact; irregular-pattern datasets are harder) are not reflected in the abstract or conclusion, which claim 'superior performance' and 'a new direction'; the claims should be toned down to match the evidence.
- [Figure 4 caption] The caption contains a duplicated phrase 'of of' ('of of multimodal and temporal embeddings').
- [Appendix B.2, Table 14] The ETTm2→ETTh2 zero-shot transfer appears to miss the 192-horizon row, making the average computed over three horizons rather than four.
- [Equation (2)] The notation topk(E^{(i)}_p) is used before E^{(i)}_p is defined; consider defining the per-sample patch embedding explicitly.
- [Section 3.2] The sentence introducing bilinear interpolation is followed by equation (8), which uses I(x_i, y_j) for the four nearest neighbors; clarifying this notation would improve readability.
- [Section 4, Baselines] The reference to '(2024a)' in the baseline description is incomplete; please cite the actual source.
Circularity Check
No significant circularity: Time-VLM is an end-to-end trained forecasting model whose central premise is tested by ablations and external benchmarks; the few cited works by co-authors are baselines or background, not load-bearing derivations.
full rationale
The paper does not derive its forecasting claim from a fitted parameter that is then called a prediction. Section 3.5 defines the objective as direct MSE on forecast error (Eq. 15), and all components (RAL, VAL, TAL) transform the same input time series; none encodes the target or a fitted summary of the reported wins. The central premise that a frozen VLM's cross-modal alignment helps is empirically tested rather than assumed: Table 6 shows removing VAL costs 9.0% MSE and removing TAL costs 2.1%, and Table 8 shows a custom ViT+BERT combination (0.348 MSE) underperforms the pretrained ViLT (0.336 MSE) on ETTh2. Comparisons to Time-LLM, GPT4TS, PatchTST, etc., are external benchmarks under a shared protocol, so the reported results are not forced by construction. The paper contains several self-citations (Time-LLM, UniTime, Time-FFM, and the Liang et al. survey), but they are used as baselines, related work, or background context, not as the sole justification for the central claim; there is no uniqueness theorem or fitted input imported from those works. The abstract's 'superior performance, particularly in few-shot and zero-shot' is questionably supported by the full tables (e.g., in Table 3 Time-VLM wins only 3 of 8 ETT transfer tasks on MSE against Time-LLM, and in Tables 1-2 it loses on ECL and Traffic), but that is an overclaim or empirical-support issue, not circularity. Accordingly the circularity score is 0.
Assumptions & free parameters
free parameters (6)
- Periodicity P (per dataset) =
24/96/144, and M4 values 1,3,4,24
- Normalization constant =
0.4
- Input sequence length =
512
- Model dimension d_model =
128
- Gate fusion dimension =
256
- Image size =
64x64
assumptions (4)
- domain assumption FFT and sine/cosine periodic encodings expose forecasting-relevant frequency and phase information in these datasets
- domain assumption Dataset-specific periodicity P is known in advance and reflects the dominant cycle (24, 96, 144)
- domain assumption Pretrained VLM cross-modal alignment transfers to synthetic time-series images and generated statistics
- domain assumption Min-max normalization of generated images to [0,255] preserves forecasting-relevant magnitude information
Cite this review
Pith. "Pith review of Time-VLM: Exploring Multimodal Vision-Language Models for Augmented Time Series Forecasting." pith.science (2026). https://pith.science/paper/E7BL2RS6
@misc{pith2026250204395,
author = {Pith},
title = {Pith review of: Time-VLM: Exploring Multimodal Vision-Language Models for Augmented Time Series Forecasting},
year = {2026},
howpublished = {\url{https://pith.science/paper/E7BL2RS6}},
note = {Machine review of arXiv:2502.04395}
}
read the original abstract
Recent advancements in time series forecasting have explored augmenting models with text or vision modalities to improve accuracy. While text provides contextual understanding, it often lacks fine-grained temporal details. Conversely, vision captures intricate temporal patterns but lacks semantic context, limiting the complementary potential of these modalities. To address this, we propose \method, a novel multimodal framework that leverages pre-trained Vision-Language Models (VLMs) to bridge temporal, visual, and textual modalities for enhanced forecasting. Our framework comprises three key components: (1) a Retrieval-Augmented Learner, which extracts enriched temporal features through memory bank interactions; (2) a Vision-Augmented Learner, which encodes time series as informative images; and (3) a Text-Augmented Learner, which generates contextual textual descriptions. These components collaborate with frozen pre-trained VLMs to produce multimodal embeddings, which are then fused with temporal features for final prediction. Extensive experiments demonstrate that Time-VLM achieves superior performance, particularly in few-shot and zero-shot scenarios, thereby establishing a new direction for multimodal time series forecasting. Code is available at https://github.com/CityMind-Lab/ICML25-TimeVLM.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 9 Pith papers
-
Overcoming the Modality Gap in Context-Aided Forecasting
A semi-synthetic dataset of 7 million context-augmented time series windows with verifier-filtered contexts enables transfer to real-world context-aided forecasting and suggests data quality—not architecture—was the b...
-
Watermarking Large Language Model-based Time Series Forecasting
Waltz embeds watermarks into LLM-based time series forecasts by nudging a few patch embeddings toward 'cold' LLM tokens, and detects them with a z-score test.
-
TSRouter: Dynamic Modality-Model Selection for Time Series Reasoning
A heterogeneous-graph router jointly selects the optimal modality (text, vision, or both) and model per time series query, beating prior routing baselines and generalizing to unseen models and tasks.
-
From Images to Signals: Are Large Vision Models Useful for Time Series Analysis?
Large vision models slightly beat strong baselines on imaged time series classification, but their forecasting advantage is narrow, tied to periodic patterns, and shrinks with long histories.
-
Teaching Time Series to See and Speak: Forecasting with Aligned Visual and Textual Perspectives
TimesCLIP aligns image-based and text-based views of the same time series via contrastive learning to improve forecasting accuracy on several benchmarks, but the full multimodal model is not used on two of the six lon...
-
XFMNet: Decoding Cross-Site and Nonstationary Water Patterns via Stepwise Multimodal Fusion for Long-Term Water Quality Forecasting
XFMNet fuses local water-quality time series with remote-sensing precipitation imagery through stepwise multimodal fusion to improve long-term, multi-site water quality forecasting.
-
Diffusion Models for Time Series Forecasting: A Survey
A survey classifies diffusion-based time series forecasting models into a two-axis taxonomy by conditioning source and integration method.
-
Large Language Model Powered Intelligent Urban Agents: Concepts, Capabilities, and Applications
The paper defines urban LLM agents, surveys their sensing, memory, reasoning, execution, and learning workflows, and organizes their applications across planning, transportation, environment, safety, and society.
-
CLIPTime: Time-Aware Multimodal Representation Learning from Images and Text
CLIPTime adds a classification head and a transformer-style regression head to CLIP embeddings, hitting 98.7% accuracy on synthetic fungi but with weak timestamp predictions, especially for spores.
Reference graph
Works this paper leans on
-
[1]
Challu, C., Olivares, K. G., Oreshkin, B. N., Ramirez, F. G., Canseco, M. M., and Dubrawski, A. Nhits: neural hierarchical interpolation for time series forecasting. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 37, pp.\ 6989--6997, 2023
work page 2023
-
[2]
Llm4ts: Two-stage fine-tuning for time-series forecasting with pre-trained llms
Chang, C., Peng, W.-C., and Chen, T.-F. Llm4ts: Two-stage fine-tuning for time-series forecasting with pre-trained llms. arXiv preprint arXiv:2308.08469, 2023
arXiv 2023
-
[3]
Chen, M., Shen, L., Li, Z., Wang, X. J., Sun, J., and Liu, C. Visionts: Visual masked autoencoders are free-lunch zero-shot time series forecasters, 2024. URL https://arxiv.org/abs/2408.17253
arXiv 2024
-
[4]
Deb, C., Zhang, F., Yang, J., Lee, S. E., and Shah, K. W. A review on time series forecasting techniques for building energy consumption. Renewable and Sustainable Energy Reviews, 74: 0 902--924, 2017
work page 2017
-
[5]
Gruver, N., Finzi, M., Qiu, S., and Wilson, A. G. Large language models are zero-shot time series forecasters. In Advances in Neural Information Processing Systems, 2023
work page 2023
-
[6]
Idrees, S. M., Alam, M. A., and Agarwal, P. A prediction approach for stock market volatility based on time series data. IEEE Access, 7: 0 17287--17298, 2019
work page 2019
-
[7]
Scaling up visual and vision-language representation learning with noisy text supervision
Jia, C., Yang, Y., Xia, Y., Chen, Y.-T., Parekh, Z., Pham, H., Le, Q., Sung, Y.-H., Li, Z., and Duerig, T. Scaling up visual and vision-language representation learning with noisy text supervision. In International conference on machine learning, pp.\ 4904--4916. PMLR, 2021
2021
-
[8]
Y., Shi, X., Chen, P.-Y., Liang, Y., Li, Y.-F., Pan, S., and Wen, Q
Jin, M., Wang, S., Ma, L., Chu, Z., Zhang, J. Y., Shi, X., Chen, P.-Y., Liang, Y., Li, Y.-F., Pan, S., and Wen, Q. Time-LLM : Time series forecasting by reprogramming large language models. In International Conference on Learning Representations (ICLR), 2024
2024
Show all 39 references
-
[9]
and Suykens, J
Karevan, Z. and Suykens, J. A. Transductive lstm for time-series prediction: An application to weather forecasting. Neural Networks, 125: 0 1--9, 2020
2020
-
[10]
Vilt: Vision-and-language transformer without convolution or region supervision
Kim, W., Son, B., and Kim, I. Vilt: Vision-and-language transformer without convolution or region supervision. In International conference on machine learning, pp.\ 5583--5594. PMLR, 2021
2021
-
[11]
Reformer: The efficient transformer
Kitaev, N., Kaiser, ., and Levskaya, A. Reformer: The efficient transformer. In International Conference on Learning Representations, 2020
2020
-
[12]
Modeling long-and short-term temporal patterns with deep neural networks
Lai, G., Chang, W.-C., Yang, Y., and Liu, H. Modeling long-and short-term temporal patterns with deep neural networks. In The 41st international ACM SIGIR conference on research & development in information retrieval, pp.\ 95--104, 2018
2018
-
[13]
Blip-2: Bootstrapping language-image pre-training with frozen image encoders and large language models
Li, J., Li, D., Savarese, S., et al. Blip-2: Bootstrapping language-image pre-training with frozen image encoders and large language models. In International conference on machine learning, pp.\ 19730--19742. PMLR, 2023
2023
-
[14]
Enhancing the locality and breaking the memory bottleneck of transformer on time series forecasting
Li, S., Jin, X., Xuan, Y., Zhou, X., Chen, W., Wang, Y.-X., and Yan, X. Enhancing the locality and breaking the memory bottleneck of transformer on time series forecasting. In Advances in neural information processing systems, 2019
2019
-
[15]
Forecasting with time series imaging
Li, X., Kang, Y., and Li, F. Forecasting with time series imaging. Expert Systems with Applications, 160: 0 113680, 2020
2020
-
[16]
Foundation models for time series analysis: A tutorial and survey
Liang, Y., Wen, H., Nie, Y., Jiang, Y., Jin, M., Song, D., Pan, S., and Wen, Q. Foundation models for time series analysis: A tutorial and survey. In Proceedings of the 30th ACM SIGKDD conference on knowledge discovery and data mining, pp.\ 6555--6565, 2024
2024
-
[17]
Liu, H., Li, C., Wu, Q., and Lee, Y. J. Visual instruction tuning. arXiv preprint arXiv:2304.08485, 2023
2023 arXiv
-
[18]
Time-ffm: Towards lm-empowered federated foundation model for time series forecasting
Liu, Q., Liu, X., Liu, C., Wen, Q., and Liang, Y. Time-ffm: Towards lm-empowered federated foundation model for time series forecasting. arXiv preprint arXiv:2405.14252, 2024 a
2024 arXiv
-
[19]
X., and Dustdar, S
Liu, S., Yu, H., Liao, C., Li, J., Lin, W., Liu, A. X., and Dustdar, S. Pyraformer: Low-complexity pyramidal attention for long-range time series modeling and forecasting. In International Conference on Learning Representations, 2022 a
2022
-
[20]
Unitime: A language-empowered unified model for cross-domain time series forecasting
Liu, X., Hu, J., Li, Y., Diao, S., Liang, Y., Hooi, B., and Zimmermann, R. Unitime: A language-empowered unified model for cross-domain time series forecasting. In Proceedings of the ACM on Web Conference 2024, pp.\ 4095--4106, 2024 b
2024
-
[21]
Non-stationary transformers: Exploring the stationarity in time series forecasting
Liu, Y., Wu, H., Wang, J., and Long, M. Non-stationary transformers: Exploring the stationarity in time series forecasting. Advances in Neural Information Processing Systems, 35: 0 9881--9893, 2022 b
2022
-
[22]
The m4 competition: Results, findings, conclusion and way forward
Makridakis, S., Spiliotis, E., and Assimakopoulos, V. The m4 competition: Results, findings, conclusion and way forward. International Journal of Forecasting, 34 0 (4): 0 802--808, 2018
2018
-
[23]
R., Jain, L., et al
Medsker, L. R., Jain, L., et al. Recurrent neural networks. Design and Applications, 5 0 (64-67): 0 2, 2001
2001
-
[24]
H., Sinthong, P., and Kalagnanam, J
Nie, Y., Nguyen, N. H., Sinthong, P., and Kalagnanam, J. A time series is worth 64 words: Long-term forecasting with transformers. In International Conference on Learning Representations, 2023
2023
-
[25]
N., Carpov, D., Chapados, N., and Bengio, Y
Oreshkin, B. N., Carpov, D., Chapados, N., and Bengio, Y. N-beats: Neural basis expansion analysis for interpretable time series forecasting. In International Conference on Learning Representations, 2020
2020
-
[26]
W., Hallacy, C., Ramesh, A., Goh, G., Agarwal, S., Sastry, G., Askell, A., Mishkin, P., Clark, J., et al
Radford, A., Kim, J. W., Hallacy, C., Ramesh, A., Goh, G., Agarwal, S., Sastry, G., Askell, A., Mishkin, P., Clark, J., et al. Learning transferable visual models from natural language supervision. In International conference on machine learning, pp.\ 8748--8763. PMLR, 2021
2021
-
[27]
Visual time series forecasting: an image-driven approach
Sood, S., Zeng, Z., Cohen, N., Balch, T., and Veloso, M. Visual time series forecasting: an image-driven approach. In Proceedings of the Second ACM International Conference on AI in Finance, pp.\ 1--9, 2021
2021
-
[28]
Timemixer++: A general time series pattern machine for universal predictive analysis
Wang, S., Li, J., Shi, X., Ye, Z., Mo, B., Lin, W., Ju, S., Chu, Z., and Jin, M. Timemixer++: A general time series pattern machine for universal predictive analysis. arXiv preprint arXiv:2410.16032, 2024
2024 arXiv
-
[29]
Etsformer: Exponential smoothing transformers for time-series forecasting
Woo, G., Liu, C., Sahoo, D., Kumar, A., and Hoi, S. Etsformer: Exponential smoothing transformers for time-series forecasting. In arXiv preprint arXiv:2202.01381, 2022
2022 arXiv
-
[30]
Autoformer: Decomposition transformers with auto-correlation for long-term series forecasting
Wu, H., Xu, J., Wang, J., and Long, M. Autoformer: Decomposition transformers with auto-correlation for long-term series forecasting. Advances in Neural Information Processing Systems, 34: 0 22419--22430, 2021
2021
-
[31]
Timesnet: Temporal 2d-variation modeling for general time series analysis
Wu, H., Hu, T., Liu, Y., Zhou, H., Wang, J., and Long, M. Timesnet: Temporal 2d-variation modeling for general time series analysis. In International Conference on Learning Representations, 2023 a
2023
-
[32]
Timesnet: Temporal 2d-variation modeling for general time series analysis
Wu, H., Hu, T., Liu, Y., Zhou, H., Wang, J., and Long, M. Timesnet: Temporal 2d-variation modeling for general time series analysis. In International Conference on Learning Representations, 2023 b
2023
-
[33]
Are transformers effective for time series forecasting? In Proceedings of the AAAI conference on artificial intelligence, volume 37, pp.\ 11121--11128, 2023
Zeng, A., Chen, M., Zhang, L., and Xu, Q. Are transformers effective for time series forecasting? In Proceedings of the AAAI conference on artificial intelligence, volume 37, pp.\ 11121--11128, 2023
2023
-
[34]
Less is more: Fast multivariate time series forecasting with light sampling-oriented mlp structures
Zhang, T., Zhang, Y., Cao, W., Bian, J., Yi, X., Zheng, S., and Li, J. Less is more: Fast multivariate time series forecasting with light sampling-oriented mlp structures. arXiv preprint arXiv:2207.01186, 2022
2022 arXiv
-
[35]
and Huang, M
Zheng, J. and Huang, M. Traffic flow forecast through time series analysis based on deep learning. IEEE Access, 8: 0 82562--82570, 2020
2020
-
[36]
Informer: Beyond efficient transformer for long sequence time-series forecasting
Zhou, H., Zhang, S., Peng, J., Zhang, S., Li, J., Xiong, H., and Zhang, W. Informer: Beyond efficient transformer for long sequence time-series forecasting. In Proceedings of the AAAI conference on Artificial Intelligence, pp.\ 11106--11115, 2021
2021
-
[37]
Fedformer: Frequency enhanced decomposed transformer for long-term series forecasting
Zhou, T., Ma, Z., Wen, Q., Wang, X., Sun, L., and Jin, R. Fedformer: Frequency enhanced decomposed transformer for long-term series forecasting. In International Conference on Machine Learning, pp.\ 27268--27286, 2022
2022
-
[38]
One fits all: Power general time series analysis by pretrained lm
Zhou, T., Niu, P., Wang, X., Sun, L., and Jin, R. One fits all: Power general time series analysis by pretrained lm. In Advances in Neural Information Processing Systems, 2023
2023
-
[39]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.