NuTime: Numerically Multi-Scaled Embedding for Large-Scale Time-Series Pretraining
Chenguo Lin, Xumeng Wen, Wei Cao, Congrui Huang, Jiang Bian, Stephen Lin, Zhirong Wu
TL;DR
NuTime tackles the challenge of scalable, cross-domain time-series representation learning where numerical scales vary widely. It introduces a Transformer-based model that patches inputs into non-overlapping windows and encodes each window by a normalized shape, mean, and std, feeding these tokens into a Transformer. The core contribution is the Numerically Multi-scaled Embedding (NME), which ensembles multiple scale-specific blocks across a spectrum of scales $k_i$ (ranging from $10^{-4}$ to $10^4$) and weights them by $\alpha_i(x)$, enabling robust encoding of scalars with arbitrary amplitudes, expressed as $\mathbf{e}(x) = \sum_{i=1}^n \alpha_i(x) \cdot \mathbf{y}_i(x)$ with $\alpha_i(x) = \frac{|\log^{-1}(|x| / k_i + \epsilon)|}{\sum_j |\log^{-1}(|x| / k_j + \epsilon)|}$. The model is pretrained with BYOL on a large, cross-domain dataset (~1.89M sequences) and evaluated across univariate/multivariate classification, few-shot learning, clustering, and anomaly detection, achieving state-of-the-art transfer performance. Overall, NuTime demonstrates that a general-purpose time-series foundation model is feasible, with strong cross-domain transfer and competitive downstream performance, while acknowledging decoding and hyperparameter considerations for future work.
Abstract
Recent research on time-series self-supervised models shows great promise in learning semantic representations. However, it has been limited to small-scale datasets, e.g., thousands of temporal sequences. In this work, we make key technical contributions that are tailored to the numerical properties of time-series data and allow the model to scale to large datasets, e.g., millions of temporal sequences. We adopt the Transformer architecture by first partitioning the input into non-overlapping windows. Each window is then characterized by its normalized shape and two scalar values denoting the mean and standard deviation within each window. To embed scalar values that may possess arbitrary numerical amplitudes in a high-dimensional space, we propose a numerically multi-scaled embedding module enumerating all possible numerical scales for the scalars. The model undergoes pretraining with a simple contrastive objective on a large-scale dataset over a million sequences collected by merging existing public data. We study its transfer performance on a number of univariate and multivariate classification tasks, few shot learning, unsupervised clustering and anomaly detection benchmarks. Our method exhibits remarkable improvement against previous pretraining approaches and establishes the new state of the art, even compared with domain-specific non-learning-based methods. Code is available at: \url{https://github.com/chenguolin/NuTime}.
