Summary
In scenarios that require zero-shot or few-shot prediction capabilities due to data sparsity, mainstream approaches often utilize time-series foundational models. The authors point out that current time-series foundational models not only demand a substantial amount of pretraining data and incur high computational costs, but they are also limited by the issue of frequency confusion, which restricts their generalization performance. In light of this, the authors propose Freq-synth, an innovative pretraining data synthesis technique that allows the model to achieve good generalization performance in downstream tasks with minimal synthetic data for pretraining, thereby reducing the high costs associated with pretraining.
Strengths
- The authors identify a potential reason for the limited generalization performance of current time-series models through experimental methods: frequency confusion. This occurs when the training set includes irrelevant frequency information beyond the target frequency, leading to a decline in generalization performance.
- Based on the aforementioned observations, the authors propose a simple and effective data synthesis technique called Freq-synth. This method synthesizes a task specific pretraining dataset based on the fundamental frequency, thus effectively addressing the frequency confusion issue previously mentioned. By pretraining on a minimal amount of synthetic data, the model can achieve zero-shot and few-shot forecasting.
Weaknesses
- The paper introduces the concept of frequency generalization, which refers to the model's ability to perform well on unseen frequencies. However, Freq-synth essentially estimates the frequencies of the target dataset and synthesizes corresponding data based on those frequencies, which does not resolve the issue of frequency generalization.
- Freq-Synth generates task-specific synthetic data and uses it to train non-foundation and foundation models. Therefore, Freq-Synth essentailly still needs to train foundation models according to task specific information. Although it does not use the task specific data itself to train the foundation models, it more or less needs the information from the task data. I wouldn't call this full-shot training, but I wouldn't call it purely zero-shot of foundation models, either. If the foundation models need to be trained on task specific information, I would rather call them task specific models. This contradicts to the design philosophy of foundation models that need to see data from multiple domains that are also unseen during zero-shot.
- A serious issue with the paper is the significant discrepancy between the paper's experimental results and those reported in original literatures. In Section 5.1, the authors pretrain all models on both Real and Synth datasets and then compare zero-shot prediction performance in downstream tasks. For example, the Real dataset contains most of the pretraining data used for TTM. However, in this experiment, TTM's performance after pretraining on the Real dataset is significantly worse than what is presented in its original paper. This seriously undermines the credibility of the study. This also applies to other baselines, whose results in the original papers show have shown better performance.
- In Section 5.2, the paper introduces Freq-synth Mix and mentions in the limitations that this method is better suited for data with complex signals. This raises a question about whether this aligns with the concept of frequency confusion. If Freq-synth Mix is designed for complex signals, it may inadvertently introduce more irrelevant frequency information, potentially exacerbating frequency confusion rather than mitigating it. This apparent contradiction warrants further discussion.
- The paper misses several SOTA baselines that could perform zero-shot, including foundation models (e.g., TimesFM, UniTS, MOIRAI) and LLM-based models (e.g., S^2IP-LLM, UniTime, Time-LLM). The specific model PatchTST is a quite old baseline, and more recent baselines, such as FITS, iTransformer, TimesNet, TimeMixer, should be included.