Papers
Topics
Authors
Recent
Search
2000 character limit reached

Zeus: Towards Tuning-Free Foundation Model for Time Series Analysis

Published 2 Jul 2026 in cs.LG | (2607.01918v1)

Abstract: We present Zeus, a unified tuning-free Time Series Foundation Model (TSFM) that delivers superior performance across diverse analysis tasks without any task-specific fine-tuning. Unlike prior studies that primarily focus on zero-shot forecasting but require task-specific tuning for other tasks, Zeus bridges this gap by addressing two fundamental challenges in multi-task generalization. First, to reconcile point-level granularity with long-sequence scalability, Zeus incorporates a multi-scale Transformer featuring point-wise tokenization and a U-shaped hierarchy, effectively balancing fine-grained fidelity with computational efficiency. Second, to accommodate varying inductive biases across different tasks, Zeus introduces Multi-Objective Temporal Masking (MOTM), a unified strategy that supports heterogeneous tasks (e.g., extrapolation, interpolation, and global abstraction) within a single framework. Extensive experiments across five representative tasks demonstrate that Zeus consistently achieves competitive results in tuning-free settings, underscoring its potential as a general-purpose TSFM.

Summary

  • The paper presents Zeus, a tuning-free time series foundation model that outperforms task-specific models without any downstream fine-tuning.
  • The paper introduces a multi-scale U-shaped Transformer with point-wise tokenization and Multi-Objective Temporal Masking to unify forecasting, imputation, anomaly detection, and classification.
  • The paper demonstrates significant improvements, such as up to 24.4% lower MSE and 21% higher F1-score, while reducing computational complexity relative to previous TSFMs.

Zeus: A Tuning-Free Foundation Model for Unified Time Series Analysis

Motivation and Problem Statement

The proliferation of foundation models across modalities has underscored the imperative for universal, tuning-free models within time series analysis. However, existing Time Series Foundation Models (TSFMs) demonstrate limited generality, primarily excelling in zero-shot forecasting while necessitating task-specific fine-tuning for imputation, anomaly detection, and classification. The prevalent reliance on patch-wise tokenization forfeits fine-grained temporal resolution, and mono-objective pretraining fails to accommodate divergent task inductive biases. This work introduces Zeus, a TSFM that achieves robust out-of-the-box performance across five representative tasks—without any downstream fine-tuning—by reconciling the architectural and pretraining-design trade-offs that have so far limited the field. Figure 1

Figure 1: Overall performance comparison of Zeus under the tuning-free setting. Zeus surpasses full-shot task-specific models (dashed lines) and significantly outperforms other TSFMs in the tuning-free setting (solid lines).

Architectural Innovations: Multi-Scale U-Shaped Transformer

Point-wise Tokenization and Temporal Hierarchies

Zeus employs point-wise tokenization, whereby each time step is represented as a token, circumventing the loss of fine-grained structure present in patch-based schemes. The architecture leverages a U-shaped multi-scale Transformer hierarchy, designed to mitigate the quadratic complexity of full-resolution self-attention for long sequences. This is realized via hierarchical downsampling and upsampling: input sequences are aggregated at progressively coarser resolutions to form semantically rich latent representations, which are then reconstructed to fine resolution, integrating both fine-scale and coarse-scale semantics through residual skip connections. Figure 2

Figure 2: Overall architecture of Zeus. Inputs from different downstream tasks are unified into a common format and tokenized. The sequence is processed by a U-shaped multi-scale Transformer; the quantile head yields probabilistic outputs, and global pooling is used for classification.

Transformer Block Design and Quantile Head

Each Transformer block employs multi-head self-attention with rotary positional embeddings and gated feed-forward networks, enhanced by RMSNorm normalization and optimized with FlashAttention v2 for scalability. The backbone outputs are processed by a quantile prediction head, supporting robust probabilistic reconstruction across all tasks. For classification, global pooling generates discriminative sequence-level representations.

Multi-Objective Temporal Masking (MOTM): Unified Pretraining Paradigm

Conventional TSFMs entangle divergent inductive biases (extrapolation versus interpolation versus global abstraction) within a restrictive pretraining objective. Zeus introduces Multi-Objective Temporal Masking (MOTM) to unify the learning signals for diverse downstream scenarios. The MOTM pipeline dynamically samples both the masking ratio and temporal range, and interleaves multiple corruption strategies in pretraining: predictive (suffix) masks, random point-wise masks, multi-block and single-block masks, and hybrid compositions thereof. This design ensures simultaneous optimization of extrapolation (forecasting), interpolation (imputation), event-level abstraction (anomaly detection), and global shape matching (classification). Figure 3

Figure 3: The MOTM pipeline hierarchically determines the masking ratio, temporal scope, and diverse masking strategies to jointly optimize extrapolation, interpolation, and local-global feature extraction.

Experimental Evaluation Across Five Tasks

1. Point and Probabilistic Forecasting

On established benchmarks, Zeus delivers state-of-the-art zero-shot point forecasting (9.0% reduction in MSE, 2.3% in MAE vs. prior SOTA TSFM) and achieves the top rank on the GIFT-Eval probabilistic forecasting benchmark on both MASE and CRPS.

2. Imputation

Zeus demonstrates 24.4% lower MSE over the strongest task-specific models for random missingness, and maintains dominance in block-missing scenarios. Notably, patch-based TSFMs exhibit pronounced degradation (over 20% MSE drop) when the evaluation shifts from patch-wise to point-wise missing.

3. Anomaly Detection

On 42 UCR anomaly detection datasets, Zeus surpasses both foundation and task-specific models, yielding a 21.0% higher F1-score than the second-best TSFM and even outperforming full-shot task-specific models. Figure 4

Figure 4: Averaged adjusted F1 score on 42 UCR anomaly detection datasets.

4. Classification

Without any parameter adaptation, Zeus achieves the highest mean accuracy under linear probing on 26 UEA datasets, and significantly surpasses prior TSFMs under a non-parametric 1-NN protocol. The learned representations reflect global semantic structure, with clear class clustering in unsupervised projections. Figure 5

Figure 5: Averaged accuracy on 26 UEA classification datasets; LP denotes linear probing, prompt denotes fine-tuning on prompt tokens.

5. Ablations and Representation Analysis

Mask-ablated variants show critical dependence on predictive masking for forecasting, multi-block masks for imputation/local interpolation, and single-blocks for global anomaly/contextual abstraction. Multi-scale feature-norm heatmaps reveal that different temporal hierarchies specialize for fine, periodic, and global anomalous features, respectively. Figure 6

Figure 6: Ablation results of Zeus.

Figure 7

Figure 7: Multi-scale feature-norm heatmaps—fine scale captures local anomalies, mid-scale periodicity, and coarse scale global/contextual irregularities.

Computational Efficiency and Practical Implications

The U-shaped multi-scale design yields a 3.8Ă— reduction in self-attention FLOPs compared to vanilla Transformers of identical depth, and, empirically, is 2.1Ă— faster and 3.1Ă— more memory-efficient versus strong point-token TSFMs (e.g., Time-MoE) for long input sequences. Figure 8

Figure 8: Efficiency comparison between Zeus and Time-MoE; Zeus is substantially faster and more memory-efficient for long sequences.

Theoretical and Practical Impact

The architectural and pretraining paradigm in Zeus systematically resolves long-standing dilemmas in TSFM deployment: granularity-versus-scalability and task heterogeneity. The strong, tuning-free generalization suggests a compelling path toward universal, plug-and-play time series models that consistently perform at or above the level of specialized models across temporal reasoning, missing-data interpolation, anomaly detection, and sequential classification—with no downstream parameter updates. The positive results also indicate that point-level modeling, traditionally associated with prohibitive costs, is practical at scale using hierarchical architectures. The multi-objective masking formulation directly connects pretraining objectives with downstream inductive biases, providing a principled framework that could be adapted to impending tasks such as segmentation and causal inference.

Further, by introducing rich, nonstationary synthetic data (Aegis-Syn), the work points to avenues for improving time series foundation model diversity and robustness, possibly mirroring the data-centric advances seen in NLP and vision FMs.

Future Directions

Persistent open challenges include explicit modeling of cross-channel correlations for multivariate times series and support for broader tasks (segmentation, irregular sampling, causal discovery). The incorporation of contrastive or prototype-based objectives may further close the gap for demanding classification regimes. Advances here could enable TSFMs as general-purpose infrastructure within scientific, industrial, and healthcare domains.

Conclusion

Zeus establishes a new standard for tuning-free time series foundation models through an overview of fine-to-coarse-to-fine hierarchical Transformer design and a principled, multi-objective temporal masking strategy. Comprehensive empirical results confirm its capacity to replace model- and task-specific pipelines with a unified backbone capable of SOTA performance—advancing both the practice and understanding of universal time series modeling (2607.01918).

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.

Tweets

Sign up for free to view the 1 tweet with 18 likes about this paper.