Key takeaways
- We introduce TimesFM-3, a state-of-the-art time series foundation model that enables highly accurate multivariate time series forecasting…
- 5 (released in September 2025), our models were strictly limited to univariate forecasting: forecasting using only the history of a single…
- Building on the efficiency and zero-shot generalization of its predecessors, TimesFM-3 adds robust support for complex multivariate…
What happened
We introduce TimesFM-3, a state-of-the-art time series foundation model that enables highly accurate multivariate time series forecasting in a single forward pass, significantly outperforming other forecasting models across major benchmarks. Since the debut of TimesFM in 2024, we’ve seen the adoption of time-series foundation models for real-world time-series forecasting tasks across multiple domains, such as retail, finance, observability, manufacturing, healthcare and natural sciences.
We evaluated TimesFM-3 on three comprehensive public forecasting benchmarks: Gift-Eval, FEV-Bench, and Time. On all three benchmarks, TimesFM-3 is the top-ranked model in terms of both point and probabilistic forecasting metrics among all pre-trained foundation models. The plots below show average rank across tasks for both point forecast accuracy and probabilistic forecast quality (lower is better) for the three benchmarks. 5. Each plot includes two entries for TimesFM-3.
The "univariate mode" point shows performance when the model is evaluated without any covariate or cross-series information, treating each target series independently, just like a traditional univariate model. Even in this univariate mode, TimesFM-3 already matches or outperforms other competing models. When we switch to the full multivariate mode, TimesFM-3 takes another leap, achieving the best average rank in both point and probabilistic forecasting across the board. This project is joint work with Yichen Zhou, Petros Mol, Abhimanyu Das and Samet Oymak.
Why it matters
5 (released in September 2025), our models were strictly limited to univariate forecasting: forecasting using only the history of a single time series. Yet, most real-world forecasting problems are inherently multivariate: where multiple time series and auxiliary external features jointly impact the future forecast of a time series. Consider forecasting ice cream sales for a retail chain. Past sales alone rarely tell the full story.
Building on the efficiency and zero-shot generalization of its predecessors, TimesFM-3 adds robust support for complex multivariate scenarios in a zero-shot manner. It can jointly predict multiple coevolving time series, capturing dependencies that improve overall accuracy without requiring task-specific fine-tuning. The model natively supports: TimesFM-3 builds on the proven decoder-only transformer architecture of its predecessors.
As in previous versions, we process time series efficiently by grouping contiguous data points into patches of 32 time steps. 5 in order to account for time series with vastly different scales. For target and past-covariate series, a token is constructed directly from a single patch.
What to watch
However, for past-future covariates, TimesFM-3 employs a clever "lookahead" strategy: each token concatenates the current patch with future patches, allowing the model to peek at upcoming known signals. Once the patches are tokenized, they pass through an input residual block and enter the main transformer stack, which operates as a 2D grid: These two attention mechanisms alternate for several layers, seamlessly blending temporal patterns with cross-series relationships.



