Skip to main content
Google TimesFM-3 model excels in time series forecasting benchmarks, shown with a graph of data points.

Editorial illustration for Google's TimesFM-3 Tops Time Series Benchmarks

Google's TimesFM-3 Breaks Time Series Forecasting

4 min read

Google Research put out TimesFM-3 this week, a 330 million parameter forecasting model that breaks from every prior version of the tool. TimesFM 1.0 through 2.5 all shared one limitation: each model forecast a single time series using only that series' own past values. No context from related products, no weather data, no promotional calendars. Just one line of numbers predicting its own future.

TimesFM-3 drops that constraint. Google pretrained it on more than 1 trillion time points specifically to handle multivariate inputs, meaning it can take multiple related series, plus historical covariates, plus known future events, and forecast them together in a single pass. No fine-tuning required. The model already claims the top average rank on three separate benchmarks, GIFT-Eval, fev-bench, and the TIME leaderboard, across both point predictions and probabilistic ones.

There's a catch on deployment. The code sits under an Apache-2.0 license, but the weights themselves ship under a non-commercial license that blocks production use. Researchers can test it freely. Companies building a live forecasting product cannot ship it as-is.

Every TimesFM checkpoint through 2.5 was univariate: one series, its own history, nothing else. TimesFM-3 is pretrained natively for multivariate forecasting on more than 1 trillion time points, and accepts multiple targets, past covariates, and past-future covariates with no task-specific fine-tuning.

Why this matters

The shift from univariate to native multivariate forecasting is the real story here, not the leaderboard rank. Every prior TimesFM release forced you to forecast each series in isolation, which meant throwing away information about how related signals move together, demand across SKUs, sensor arrays, correlated financial instruments. A 330M parameter model that handles multiple targets and covariates in one pass, with no fine-tuning, lowers the barrier for teams who don't have the budget to train bespoke forecasting pipelines for every new dataset.

That said, we'd treat the GIFT-Eval, fev-bench, and TIME leaderboard wins as a starting point, not a verdict. Benchmark leadership among pretrained foundation models is a narrower claim than "best forecaster available," and Chronos-2 and Toto 2.0 aren't standing still. For builders, the practical question is whether TimesFM-3's zero-shot multivariate capability actually holds up on your messy, covariate-heavy production data, not Google's curated eval sets. Worth testing directly before swapping out existing pipelines.

Common Questions Answered

How does TimesFM-3 differ from previous versions like TimesFM 1.0 through 2.5?

TimesFM-3 is the first version to support native multivariate forecasting, whereas all previous versions were univariate and could only forecast a single time series using only that series' own historical values. TimesFM-3 was pretrained on more than 1 trillion time points and can accept multiple targets, past covariates, and past-future covariates without requiring task-specific fine-tuning.

What are the key advantages of TimesFM-3's multivariate forecasting capability?

Multivariate forecasting allows TimesFM-3 to leverage information about how related signals move together, such as demand across multiple products (SKUs), data from sensor arrays, and correlated financial instruments. This eliminates the need to forecast each series in isolation, which means teams can capture important relationships between different data streams that univariate models would miss.

What is the model size and pretraining scale of TimesFM-3?

TimesFM-3 is a 330 million parameter forecasting model that was pretrained on more than 1 trillion time points. This substantial pretraining enables the model to perform effectively without requiring task-specific fine-tuning for different forecasting applications.

Why does the shift from univariate to multivariate forecasting matter for teams without extensive resources?

A 330M parameter model that handles multiple targets and covariates in a single pass with no fine-tuning requirement significantly lowers the barrier for teams who lack the computational resources or expertise to build custom forecasting solutions. This democratizes access to sophisticated time series forecasting capabilities that were previously only available to well-resourced organizations.

LIVE23:50Google's TimesFM-3 Tops Time Series Benchmarks