model release

Google Releases TimesFM-3, a 330M-Parameter Model That Forecasts Sales Using Weather and Discount Data

TL;DR

Google Research has released TimesFM-3, a 330-million-parameter time series forecasting model that predicts outcomes like sales by combining related variables, historical data, and known future events such as discounts or weather. The model claims top rankings on three benchmarks against Amazon's Chronos-2 and the Toto-2.0 family.

3 min read
0

Google Research has released TimesFM-3, a time series forecasting model that predicts future outcomes—like retail sales—by combining historical data with related variables such as weather forecasts and planned discounts. The model is available now on GitHub and Hugging Face, with Google planning to add it to BigQuery in the coming weeks.

What the model does

TimesFM-3 has 330 million parameters and was trained on more than one trillion real and synthetic time series data points, according to Google. Like its predecessors, it works zero-shot, requiring no additional training to handle a new forecasting task.

Google illustrates the model's approach with an ice cream sales example: a useful forecast shouldn't just extrapolate from past sales, but also account for related products (waffle cones, syrup), historical foot traffic, weather, discount campaigns, and holidays. TimesFM-3 handles three categories of supplementary data—forecasting multiple related variables simultaneously, incorporating factors known only historically, and using known future events like scheduled discounts or weather forecasts.

Rather than producing a single point estimate, the model outputs nine values per time step to represent a range of uncertainty around each prediction.

Architecture changes

TimesFM-3 is built on a Transformer architecture, consistent with earlier versions in the family. It groups 32 consecutive data points into a single patch and normalizes each series to a common scale, allowing it to compare measurements of different magnitudes directly. The model processes data along two axes: within a single time series (looking only at past values, to prevent information leakage) and across series at a given point in time, to learn relationships—such as how a discount on one product affects sales of a related item.

Google says earlier TimesFM versions predicted the future one block at a time, an approach it describes as slow, compute-heavy, and prone to compounding errors as each prediction built on the last. TimesFM-3 instead marks all future time steps as blanks and fills them in a single pass, a method Google calls one-shot forecasting.

Benchmark claims

According to Google, TimesFM-3 ranks first among pretrained forecasting models on three benchmarks—Gift-Eval, FEV-Bench, and Time—in both point accuracy and uncertainty calibration. Competing models include Amazon's Chronos-2, the Toto-2.0 family, and Google's own prior release, TimesFM-2.5. Google claims that even when restricted to single-variable forecasting, TimesFM-3 matches or beats competitors, and the performance gap widens when multivariate data is added. On FEV-Bench, Google says Chronos-2 comes close to TimesFM-3's univariate mode but trails the full multivariate version significantly.

These are Google's own reported results; independent verification of the benchmark scores has not been published.

Availability

TimesFM-3 is available now on GitHub and Hugging Face. Google says it will integrate the model into BigQuery in the coming weeks; the AI.FORECAST command there currently runs TimesFM-2.5, which handles only single-variable forecasting. TimesFM-2.5 was released in September 2025, and Google says all versions through 2.5 were limited to processing one data series at a time—making TimesFM-3's multivariate support the primary architectural shift in this release.

Google says the TimesFM family, launched in 2024, has already seen deployment in retail, finance, manufacturing, healthcare, and scientific research.

What this means

TimesFM-3's real advance is architectural, not just accuracy: moving from single-variable, step-by-step prediction to one-shot multivariate forecasting addresses a known weakness in autoregressive time series models—error compounding. Whether the benchmark leads hold up under independent testing remains to be seen, since Gift-Eval, FEV-Bench, and Time results here come solely from Google. For teams doing operational forecasting—retail demand planning, capacity planning, financial forecasting—the ability to feed in known future events like discount calendars without retraining is the practical selling point. The BigQuery integration, once live, will matter more for adoption than the open-weights release, since it puts the model directly in front of enterprise data teams already running SQL-based analytics pipelines.

Related Articles

model release

Sakana AI Launches Fugu Ultra v2, a Multi-Agent Orchestrator With 1M-Token Context

Sakana AI has released Fugu Ultra v2, described as a learned multi-agent orchestration system rather than a single monolithic model. It offers a 1M-token context window, configurable reasoning effort, and pricing of $5 per 1M input tokens and $30 per 1M output tokens.

model release

DeepSeek V4.1-Flash Cuts KV Cache Memory by Up to 8x, Matches Opus 5 on Coding Benchmark

DeepSeek released V4.1-Flash, a 552-billion-parameter model built to slash the memory overhead of long-context AI agents. The model cuts GPU cache needs to roughly a quarter of its predecessor's and matches closed models from OpenAI and Anthropic on select coding benchmarks.

model release

DeepSeek Launches V4.1 Flash: Low-Cost MoE Model Claims to Beat V4 Pro

DeepSeek has released V4.1 Flash, a sparse mixture-of-experts model priced at $0.30 per 1M input tokens and $1.20 per 1M output tokens with a 1 million token context window. DeepSeek claims the model exceeds the larger V4 Pro on performance, speed, and task completion time.

model release

AllSpark's Iris-mini and Iris-pro Top Open-Weight Search Agent Benchmarks

Chinese lab AllSpark has released Iris-mini and Iris-pro, two open-weight search agents built on Qwen3 models that claim the top spot among open-weight systems in their size classes on four research benchmarks. The release includes model weights, an agent harness, and evaluation code, with training pipelines to follow.

Comments

Loading...