REVIEW 3 major objections 4 minor 45 references
DLGAN : Time Series Synthesis Based on Dual-Layer Generative Adversarial Networks
T0 review · 3 major / 4 minor · reviewed 2026-08-05 · deepseek-v4-flash
Pith's one-line read DLGAN claims that decomposing time series generation into supervised feature extraction followed by reconstruction lets a GAN synthesize sequences whose temporal dependencies survive, and reports best discriminative and predictive scores ov
desk verdict A sensible two-stage GAN architecture for time series, but the headline numbers are not yet reproducible—worth a careful referee, not a desk reject. 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 temporal feature bottleneck: a temporal feature extractor that turns a multivariate hidden sequence into a single compact vector by first modeling each channel independently with non-overlapping sliding-window patches and multi-head self-attention plus positional encoding, then modeling cross-channel patch dependencies with self-attention without positional encoding, then passing through a deep GRU. This vector is what the first GAN learns to synthesize and what the second GAN learns to expand back into a hidden sequence. The two-stage decomposition means random noise never touches raw sequence space; the paper argues this is why generated sequences retain temp
What would settle it
Re-run DLGAN and all six baselines under the TimeGAN protocol on the same four datasets across many random seeds; if the discriminative and predictive scores come within noise of one another, or if another baseline ties DLGAN, the central claim of superiority is falsified. A cheaper probe: check whether the supervised reconstruction loss is the active ingredient by training DLGAN without teacher forcing; if temporal fidelity does not drop, the mechanism claimed is not what carries the result.
Extended reading notes
Core claim
The central discovery DLGAN proposes is that time series synthesis should be decomposed into two stacked generative layers sandwiching a temporal feature bottleneck. The sequence autoencoder maps original series X into hidden sequence H via a deep GRU and reconstructs X, providing supervised signal. The Temporal Feature Generator extracts a compact temporal feature vector from the real hidden sequence using channel-independent patch-based multi-head self-attention and GRU, then trains Generator1 to synthesize feature vectors that fool Discriminator1. The Sequence Reconstructor (Generator2) then autoregressively rebuilds the hidden sequence from either the real or synthesized feature vector,
Load-bearing premise
The comparison assumes the evaluation protocol exactly matches the TimeGAN setup—same preprocessing, train/test splits, hyperparameters, and score computation—so the reported margins reflect model quality rather than setup differences.
Editorial extensions
If this is right
- Synthetic time series produced through the feature bottleneck can be shared with outside analysts while preserving temporal dependency structure, addressing the data-circulation use case in industrial settings.
- The supervised autoencoder pretraining plus low-dimensional feature-space GAN gives a recipe that should generalize to other sequence domains, not just the four tabular-style datasets tested.
- Because the temporal feature extractor operates channel-independently before cross-channel attention, DLGAN scales to high-dimensional multivariate series without losing local temporal dynamics.
- Ablation results imply even the simplest sequence modeling process improves synthesis quality when anchored by supervised reconstruction on original data, supporting the paper's core claim that supervision is the main driver.
- Reported scores beat six baselines on discriminative and predictive metrics; if replicated, DLGAN becomes the new reference point for time series GAN comparisons.
Reading between the lines
- The paper's logic suggests an untested extension: applying the same feature-bottleneck decomposition to other generative families (e.g., diffusion or VAE) could improve their temporal fidelity, since the bottleneck, not the GAN itself, may be doing most of the work.
- It also implies a testable prediction: synthetic series from DLGAN should show better phase alignment or autocorrelation structure than those from direct-generation GANs, something the discriminative score measures indirectly and could be checked with spectral or autocorrelation statistics.
- The reported gains on Stock and Exchange, low-dimensional daily series, are small; whether DLGAN's advantage holds on longer, higher-frequency series is an open question the paper does not address.
- Since the paper does not report confidence intervals, a fair comparison across multiple random seeds with the same protocol would reveal whether the observed margins are practically meaningful.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes DLGAN, a GAN-based time series generator that separates generation into three modules: a sequence autoencoder that maps real series to a hidden space; a temporal feature generator consisting of a feature extractor, Generator1, and Discriminator1 that aligns synthetic feature vectors with real temporal features; and a sequence reconstructor (Generator2/Discriminator2) that autoregressively reconstructs hidden sequences from feature vectors. Training combines supervised MSE reconstruction losses with standard GAN losses, first pretraining the autoencoder and the feature extractor/reconstructor, then jointly training all modules with the combined generator objective in Eq. (14). Experiments on ETTH, Stock, Exchange, and Weather compare DLGAN with six baselines using discriminative and predictive scores adopted from TimeGAN, plus t-SNE visualizations and an ablation study of the two main components. The paper claims state-of-the-art performance across all four datasets.
Significance. If the empirical results are reproducible, DLGAN offers a simple and plausible architectural recipe: extract temporal features from real sequences rather than from random noise, and add a second adversarial layer at the reconstruction stage. This directly targets a known weakness of GAN time-series models and the reported margins in Table 1 are large. The ablation design is reasonable and the full model is best on all four datasets. However, the contribution is entirely empirical; the manuscript provides no code, no data splits, no hyperparameters, no random seeds, and no variance estimates. The main strength is an internally coherent architecture and a plausible training procedure, but the central 'outperforms state-of-the-art' claim cannot currently be verified from the manuscript alone.
major comments (3)
- [§5.1, Table 1] The central empirical claim is not verifiable because the evaluation protocol is underspecified. The manuscript reports no preprocessing (normalization, sequence length T, patch/window size), no train/validation/test splits, no hyperparameters, no random seeds, and no confidence intervals. Baseline numbers are reported without variance; for example, the TimeGAN Stock discriminative score (0.102) appears consistent with values in the original TimeGAN paper, while ETTH, Exchange, and Weather were not part of that evaluation. Without a controlled rerun of all baselines under identical splits and preprocessing, or without explicit citations to matching published settings, the margins (e.g., DLGAN 0.079 vs TimeGAN 0.106 on ETTH; 0.173 vs 0.412 on Weather) may reflect protocol differences rather than model quality. The predictive score also requires a defined train/test split (train on synthet
- [§4, Eq. (14)] The generator objective includes a supervised reconstruction loss L_mse(H_real, Ĥ_real) on the real hidden sequence. This means Generator2 is directly trained to reconstruct real training data, not only to fool discriminators. The paper should clarify what data are used for this supervised loss and for the downstream discriminative/predictive evaluation. If the same real sequences are used for both training and evaluation, the reported predictive scores could be optimistic because the synthetic data may encode training-set specific information. This is not a circularity in the comparison against external baselines, but the leakage controls must be documented before the superiority claim can be assessed.
- [§5.3, Table 2] The ablation results do not consistently support the claim that each component is individually necessary. For instance, on Exchange, w/o All (discriminative 0.127) is better than w/o Temporal Feature Extractor (0.155) and w/o TimeSeries Reconstructor (0.163); on Weather, w/o All (0.177) is nearly as good as the full model (0.173). Similar non-monotonicities appear in the predictive scores. Section 5.3 acknowledges this but provides only a post hoc explanation. The conclusion states that 'ablation studies validate the effectiveness of each module,' which is stronger than the evidence in Table 2 supports. This does not invalidate the main comparison, but it should be presented more cautiously and, ideally, with repeated-seed statistics.
minor comments (4)
- [§3.4, Eq. (11)] Equation (11) reads y2 = Discriminator2(H_real_1:T, H_real_1:T, H_fake_1:T); the second argument is likely a typo for Ĥ_real_1:T, based on the text in §3.4. Please correct and specify how the three inputs are combined (e.g., concatenation).
- [§5.1, Dataset list] Typo: 'Excahnge' should be 'Exchange'.
- [Tables 1 and 2] Tables use 'Methed' instead of 'Method'. Also, the table headers and caption formatting should follow the conference style.
- [§3.3, Figure 2 caption] The text refers to 'Figure2(c.' with inconsistent punctuation; make the figure/panel references consistent throughout.
Circularity Check
No significant circularity; DLGAN is a straightforward architecture-plus-empirical-evaluation paper with no self-citations and no construction-by-definition.
full rationale
The paper's central claim is empirical: DLGAN outperforms six time-series generation baselines on discriminative and predictive scores across four public datasets (Table 1). Nothing in the derivation chain makes these results true by construction. The model is defined by an encoder/decoder autoencoder (Eqs. 1–2), a temporal feature extractor and generator (Eqs. 3–8), and a reconstructor (Eqs. 9–11), trained with the supervised MSE losses (Eqs. 12–13) and GAN losses (Eqs. 14–15). The supervised reconstruction loss L_mse(H_real, H_real_hat) is an intended training objective that fits the generator to the real hidden sequence; it is not a metric being relabeled as a prediction. The discriminative and predictive scores come from TimeGAN's evaluation protocol applied to external baselines, not from any fitted parameter of DLGAN. There are no self-citations, no imported uniqueness theorems, and no ansatz smuggled in via citation. The main weakness is reproducibility reporting: preprocessing, splits, sequence lengths, seeds, and confidence intervals are absent, so the exact margins over baselines cannot be independently verified from the manuscript. That is a reporting/evidence-quality concern, not circularity. Therefore the appropriate circularity score is 0.
Assumptions & free parameters
free parameters (3)
- autoencoder latent dimension N
- patch/window size in temporal feature extractor
- all GAN/GRU/attention hyperparameters
assumptions (3)
- domain assumption The TimeGAN evaluation protocol (discriminative score, predictive score, t-SNE) is a valid measure of synthetic time series quality.
- domain assumption Preprocessing and evaluation of the four public datasets match the baselines' original settings.
- domain assumption Standard GAN training with MSE reconstruction loss converges and the two-stage pretraining is stable at the reported hyperparameters.
Cite this review
Pith. "Pith review of DLGAN : Time Series Synthesis Based on Dual-Layer Generative Adversarial Networks." pith.science (2026). https://pith.science/paper/GMEXT3I5
@misc{pith2026250821340,
author = {Pith},
title = {Pith review of: DLGAN : Time Series Synthesis Based on Dual-Layer Generative Adversarial Networks},
year = {2026},
howpublished = {\url{https://pith.science/paper/GMEXT3I5}},
note = {Machine review of arXiv:2508.21340}
}
read the original abstract
Time series synthesis is an effective approach to ensuring the secure circulation of time series data. Existing time series synthesis methods typically perform temporal modeling based on random sequences to generate target sequences, which often struggle to ensure the temporal dependencies in the generated time series. Additionally, directly modeling temporal features on random sequences makes it challenging to accurately capture the feature information of the original time series. To address the above issues, we propose a simple but effective generative model \textbf{D}ual-\textbf{L}ayer \textbf{G}enerative \textbf{A}dversarial \textbf{N}etworks, named \textbf{DLGAN}. The model decomposes the time series generation process into two stages: sequence feature extraction and sequence reconstruction. First, these two stages form a complete time series autoencoder, enabling supervised learning on the original time series to ensure that the reconstruction process can restore the temporal dependencies of the sequence. Second, a Generative Adversarial Network (GAN) is used to generate synthetic feature vectors that align with the real-time sequence feature vectors, ensuring that the generator can capture the temporal features from real time series. Extensive experiments on four public datasets demonstrate the superiority of this model across various evaluation metrics.
Figures
Reference graph
Works this paper leans on
-
[1]
Sensegen: A deep learning architecture for synthetic sensor data generation
Moustafa Alzantot, Supriyo Chakraborty, and Mani Srivastava. Sensegen: A deep learning architecture for synthetic sensor data generation. In 2017 IEEE International Conference on Pervasive Computing and Communications Workshops (PerCom Workshops), pages 188–193. IEEE, 2017
work page 2017
-
[2]
Synthsonic: Fast, probabilistic modeling and synthesis of tabular data
Max Baak, Simon Brugman, Ilan Fridman Rojas, Lorraine Dalmeida, Ralph EQ Urlus, and Jean-Baptiste Oger. Synthsonic: Fast, probabilistic modeling and synthesis of tabular data. In International Conference on Artificial Intelligence and Statistics, pages 4747–4763. PMLR, 2022
work page 2022
-
[3]
Data synthesis via differentially private markov random fields.Proceedings of the VLDB Endowment, 14(11):2190–2202, 2021
Kuntai Cai, Xiaoyu Lei, Jianxin Wei, and Xiaokui Xiao. Data synthesis via differentially private markov random fields.Proceedings of the VLDB Endowment, 14(11):2190–2202, 2021
2021
-
[4]
Gan-leaks: A taxonomy of membership inference attacks against generative models
Dingfan Chen, Ning Yu, Yang Zhang, and Mario Fritz. Gan-leaks: A taxonomy of membership inference attacks against generative models. In Proceedings of the 2020 ACM SIGSAC conference on computer and communications security , pages 343–362, 2020
work page 2020
-
[5]
Xue Chen, Cheng Wang, Qing Yang, Teng Hu, and Changjun Jiang. Locally differentially private high-dimensional data synthesis.Science China Information Sciences, 66(1):112101, 2023
work page 2023
-
[6]
Em- pirical evaluation of gated recurrent neural networks on sequence modeling
Junyoung Chung, Caglar Gulcehre, Kyunghyun Cho, and Yoshua Bengio. Em- pirical evaluation of gated recurrent neural networks on sequence modeling. In NIPS 2014 Workshop on Deep Learning, December 2014 , 2014. Conference’17, July 2017, Washington, DC, USA Hou X., Liu S. et al
work page 2014
-
[7]
Timevae: A variational auto-encoder for multivariate time series generation
Abhyuday Desai, Cynthia Freeman, Zuhui Wang, and Ian Beaver. Timevae: A variational auto-encoder for multivariate time series generation. arXiv preprint arXiv:2111.08095, 2021
arXiv 2021
-
[8]
Chris Donahue, Julian McAuley, and Miller Puckette. Adversarial audio synthe- sis. In International Conference on Learning Representations , 2019
work page 2019
Show all 45 references
-
[9]
Adarnn: Adaptive learning and forecasting of time series
Yuntao Du, Jindong Wang, Wenjie Feng, Sinno Pan, Tao Qin, Renjun Xu, and Chongjun Wang. Adarnn: Adaptive learning and forecasting of time series. In Proceedings of the 30th ACM international conference on information & knowledge management, pages 402–411, 2021
2021
-
[10]
Real-valued (med- ical) time series generation with recurrent conditional gans
Cristóbal Esteban, Stephanie L Hyland, and Gunnar Rätsch. Real-valued (med- ical) time series generation with recurrent conditional gans. arXiv preprint arXiv:1706.02633, 2017
2017 arXiv
-
[11]
Relational data synthesis using generative adversarial networks
Ju Fan, Junyou Chen, Tongyu Liu, Yuwei Shen, Guoliang Li, and Xiaoyong Du. Relational data synthesis using generative adversarial networks. Proceedings of the VLDB Endowment, 13(12):1962–1975, 2020
1962
-
[12]
Generative adversarial nets
Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. Advances in neural information processing systems , 27, 2014
2014
-
[13]
The capacity and robustness trade- off: Revisiting the channel independent strategy for multivariate time series forecasting
Lu Han, Han-Jia Ye, and De-Chuan Zhan. The capacity and robustness trade- off: Revisiting the channel independent strategy for multivariate time series forecasting. IEEE Transactions on Knowledge and Data Engineering , 2024
2024
-
[14]
Denoising diffusion probabilistic models
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models. Advances in neural information processing systems , 33:6840–6851, 2020
2020
-
[15]
Long short-term memory
Sepp Hochreiter and Jürgen Schmidhuber. Long short-term memory. Neural computation, 9(8):1735–1780, 1997
1997
-
[16]
Psa-gan: Progressive self attention gans for synthetic time series
Paul Jeha, Michael Bohlke-Schneider, Pedro Mercado, Shubham Kapoor, Ra- jbir Singh Nirwan, Valentin Flunkert, Jan Gasthaus, and Tim Januschowski. Psa-gan: Progressive self attention gans for synthetic time series. In Interna- tional Conference on Learning Representations , 2022
2022
-
[17]
Progressive growing of gans for improved quality, stability, and variation
Tero Karras, Timo Aila, Samuli Laine, and Jaakko Lehtinen. Progressive growing of gans for improved quality, stability, and variation. InInternational Conference on Learning Representations, 2018
2018
-
[18]
Auto-encoding variational bayes
Diederik P Kingma and Max Welling. Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114, 2013
2013 arXiv
-
[19]
Modeling long-and short-term temporal patterns with deep neural networks
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 & development in information retrieval, pages 95–104, 2018
2018
-
[20]
In- vertible tabular gans: Killing two birds with one stone for tabular data synthesis
Jaehoon Lee, Jihyeon Hyeong, Jinsung Jeon, Noseong Park, and Jihoon Cho. In- vertible tabular gans: Killing two birds with one stone for tabular data synthesis. Advances in Neural Information Processing Systems , 34:4263–4273, 2021
2021
-
[21]
Causal recurrent variational autoencoder for medical time series generation
Hongming Li, Shujian Yu, and Jose Principe. Causal recurrent variational autoencoder for medical time series generation. In Proceedings of the AAAI conference on artificial intelligence , volume 37, pages 8562–8570, 2023
2023
-
[22]
A critical review of recurrent neural networks for sequence learning.arXiv preprint arXiv:1506.00019, 2015
Zachary C Lipton, John Berkowitz, and Charles Elkan. A critical review of recurrent neural networks for sequence learning.arXiv preprint arXiv:1506.00019, 2015
2015 arXiv
-
[23]
C-rnn-gan: Continuous recurrent neural networks with adversar- ial training
Olof Mogren. C-rnn-gan: Continuous recurrent neural networks with adversar- ial training. arXiv preprint arXiv:1611.09904, 2016
2016 arXiv
-
[24]
A time series is worth 64 words: Long-term forecasting with transformers
Yuqi Nie, Nam H Nguyen, Phanwadee Sinthong, and Jayant Kalagnanam. A time series is worth 64 words: Long-term forecasting with transformers. In The Eleventh International Conference on Learning Representations , 2023
2023
-
[25]
Data synthesis based on generative adversarial networks
Noseong Park, Mahmoud Mohammadi, Kshitij Gorde, Sushil Jajodia, Hongkyu Park, and Youngmin Kim. Data synthesis based on generative adversarial networks. Proceedings of the VLDB Endowment , 11(10), 2018
2018
-
[26]
Unsupervised representa- tion learning with deep convolutional generative adversarial networks
Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representa- tion learning with deep convolutional generative adversarial networks. arXiv preprint arXiv:1511.06434, 2015
2015 arXiv
-
[27]
Dae-gan: Dynamic aspect-aware gan for text-to-image synthesis
Shulan Ruan, Yong Zhang, Kun Zhang, Yanbo Fan, Fan Tang, Qi Liu, and Enhong Chen. Dae-gan: Dynamic aspect-aware gan for text-to-image synthesis. In Proceedings of the IEEE/CVF International Conference on Computer Vision , pages 13960–13969, 2021
2021
-
[28]
Scale- former: Iterative multi-scale refining transformers for time series forecasting
Mohammad Amin Shabani, Amir H Abdi, Lili Meng, and Tristan Sylvain. Scale- former: Iterative multi-scale refining transformers for time series forecasting. In International Conference on Learning Representations , 2023
2023
-
[29]
Multi-resolution diffusion models for time series forecasting
Lifeng Shen, Weiyu Chen, and James Kwok. Multi-resolution diffusion models for time series forecasting. In The Twelfth International Conference on Learning Representations, 2024
2024
-
[30]
P3gm: Private high-dimensional data release via privacy preserving phased generative model
Shun Takagi, Tsubasa Takahashi, Yang Cao, and Masatoshi Yoshikawa. P3gm: Private high-dimensional data release via privacy preserving phased generative model. In 2021 IEEE 37th International Conference on Data Engineering (ICDE) , pages 169–180. IEEE, 2021
2021
-
[31]
WaveNet: A Generative Model for Raw Audio
Aäron van den Oord, Sander Dieleman, Heiga Zen, Karen Simonyan, Oriol Vinyals, Alex Graves, Nal Kalchbrenner, Andrew Senior, and Koray Kavukcuoglu. WaveNet: A Generative Model for Raw Audio. In Proc. 9th ISCA Workshop on Speech Synthesis Workshop (SSW 9) , page 125, 2016
2016
-
[32]
Visualizing data using t-sne
Laurens Van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. Journal of machine learning research , 9(11), 2008
2008
-
[33]
Diffusion-gan: Training gans with diffusion
Zhendong Wang, Huangjie Zheng, Pengcheng He, Weizhu Chen, and Mingyuan Zhou. Diffusion-gan: Training gans with diffusion. In International Conference on Learning Representations, 2023
2023
-
[34]
Transformers in time series: a survey
Qingsong Wen, Tian Zhou, Chaoli Zhang, Weiqi Chen, Ziqing Ma, Junchi Yan, and Liang Sun. Transformers in time series: a survey. InProceedings of the Thirty- Second International Joint Conference on Artificial Intelligence , pages 6778–6786, 2023
2023
-
[35]
Autoformer: Decom- position transformers with auto-correlation for long-term series forecasting
Haixu Wu, Jiehui Xu, Jianmin Wang, and Mingsheng Long. Autoformer: Decom- position transformers with auto-correlation for long-term series forecasting. Advances in neural information processing systems , 34:22419–22430, 2021
2021
-
[36]
Lightweight privacy-preserving gan framework for model training and image synthesis
Yang Yang, Ke Mu, and Robert H Deng. Lightweight privacy-preserving gan framework for model training and image synthesis. IEEE Transactions on Infor- mation Forensics and Security , 17:1083–1098, 2022
2022
-
[37]
Time-series generative adversarial networks
Jinsung Yoon, Daniel Jarrett, and Mihaela Van der Schaar. Time-series generative adversarial networks. Advances in neural information processing systems , 32, 2019
2019
-
[38]
Learning to learn the future: Modeling concept drifts in time series prediction
Xiaoyu You, Mi Zhang, Daizong Ding, Fuli Feng, and Yuanmin Huang. Learning to learn the future: Modeling concept drifts in time series prediction. In Pro- ceedings of the 30th ACM International Conference on Information & Knowledge Management, pages 2434–2443, 2021
2021
-
[39]
Ds- former: A double sampling transformer for multivariate time series long-term prediction
Chengqing Yu, Fei Wang, Zezhi Shao, Tao Sun, Lin Wu, and Yongjun Xu. Ds- former: A double sampling transformer for multivariate time series long-term prediction. In Proceedings of the 32nd ACM International Conference on Informa- tion and Knowledge Management , pages 3062–3072, 2023
2023
-
[40]
Attributing fake images to gans: Learn- ing and analyzing gan fingerprints
Ning Yu, Larry S Davis, and Mario Fritz. Attributing fake images to gans: Learn- ing and analyzing gan fingerprints. In Proceedings of the IEEE/CVF international conference on computer vision , pages 7556–7566, 2019
2019
-
[41]
Diffusion-TS: Interpretable diffusion for general time series generation
Xinyu Yuan and Yan Qiao. Diffusion-TS: Interpretable diffusion for general time series generation. In The Twelfth International Conference on Learning Representations, 2024
2024
-
[42]
Quality-aware self-training on differentiable synthesis of rare relational data
Chongsheng Zhang, Yaxin Hou, Ke Chen, Shuang Cao, Gaojuan Fan, and Ji Liu. Quality-aware self-training on differentiable synthesis of rare relational data. In Proceedings of the AAAI Conference on Artificial Intelligence , volume 37, pages 6602–6611, 2023
2023
-
[43]
Privbayes: Private data release via bayesian networks
Jun Zhang, Graham Cormode, Cecilia M Procopiuc, Divesh Srivastava, and Xiaokui Xiao. Privbayes: Private data release via bayesian networks. ACM Transactions on Database Systems (TODS) , 42(4):1–41, 2017
2017
-
[44]
Crossformer: Transformer utilizing cross- dimension dependency for multivariate time series forecasting
Yunhao Zhang and Junchi Yan. Crossformer: Transformer utilizing cross- dimension dependency for multivariate time series forecasting. In The eleventh international conference on learning representations , 2022
2022
-
[45]
Informer: Beyond efficient transformer for long sequence time-series forecasting
Haoyi Zhou, Shanghang Zhang, Jieqi Peng, Shuai Zhang, Jianxin Li, Hui Xiong, and Wancai Zhang. 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
2021
Reviewed August 5, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.