Google's time-series model shrinks 60%, grows context 8×
A pretrained decoder-only foundation model that forecasts sequences without hand-tuned frequency parameters.

What it does
TimesFM is a pretrained model for time-series forecasting: feed it historical data, get point predictions and quantile ranges out. It runs in BigQuery ML, Google Sheets, Vertex AI, or locally via PyTorch or Flax. The latest 2.5 release (200M parameters, down from 500M) handles context windows up to 16k tokens and horizons to 1k steps.
The interesting bit
It ditches the usual frequency indicator—hourly, daily, weekly—entirely. The model is supposed to infer that itself, which removes a common foot-gun when your data is irregular or multivariate. There’s also an optional 30M “continuous quantile head” for probabilistic forecasts, and recent additions include LoRA fine-tuning via HuggingFace PEFT and an agent skill file for automated calling.
Key highlights
- 200M-parameter decoder-only transformer, pretrained on large-scale time-series corpora
- Supports up to 16k context length and 1k-step horizons with optional quantile output
- No frequency indicator required; includes flags for positivity inference and quantile-crossing fixes
- Available in PyTorch and Flax; covariate support via XReg module
- Fine-tuning example with LoRA + PEFT; unit tests and community fixes added April 2026
- Already integrated into BigQuery ML, Google Sheets, and Vertex Model Garden
Caveats
- Explicitly “not an officially supported Google product” despite the Google Research branding
- Older 1.0/2.0 checkpoints archived in a subdirectory; backward compatibility requires pinning
timesfm==1.3.0 - You bring your own torch/jax backend; the install instructions assume
uvand leave accelerator setup to you
Verdict
Worth a look if you forecast at scale and want a pretrained model without the usual feature-engineering ritual. Skip it if you need a fully supported enterprise SLA or if your problem is heavily dependent on external regressors—the XReg support exists, but the README treats it as a recent add-on rather than a core strength.