Codesota · Models · TimesFMGoogle Research8 results · 4 benchmarks
Model card

TimesFM.

Google Researchopen-source200M paramsDecoder-only Transformer

Zero-shot time-series foundation model. Pretrained on 100B time points.

§ 01 · Card

Model card,
inline.

Rendered server-side from the upstream README on Hugging Face — same content as the source repo, with editorial typography. The full card, sample weights, and revision history live on HF.


Source
google/timesfm-1.0-200m
License
apache-2.0
Pipeline
time-series-forecasting

TimesFM

TimesFM (Time Series Foundation Model) is a pretrained time-series foundation model developed by Google Research for time-series forecasting.

Resources and Technical Documentation:

Authors: Google Research

This is not an officially supported Google product.

Checkpoint timesfm-1.0-200m

timesfm-1.0-200m is the first open model checkpoint:

  • It performs univariate time series forecasting for context lengths up to 512 time points and any horizon lengths, with an optional frequency indicator.
  • It focuses on point forecasts and does not support probabilistic forecasts. We experimentally offer quantile heads but they have not been calibrated after pretraining.
  • It requires the context to be contiguous (i.e. no "holes"), and the context and the horizon to be of the same frequency.

Benchmarks

Please refer to our result tables on the extended benchmarks and the long horizon benchmarks.

Please look into the README files in the respective benchmark directories within experiments/ for instructions for running TimesFM on the respective benchmarks.

Installation

This HuggingFace repo hosts TimesFm checkpoints. Please visit our GitHub repo and follow the instructions there to install the timesfm library for model inference.

In particular, the dependency lingvo does not support ARM architectures and the inference code is not working for machines with Apple silicon. We are aware of this issue and are working on a solution. Stay tuned.

Usage

Initialize the model and load a checkpoint.

Then the base class can be loaded as,

python
import timesfm tfm = timesfm.TimesFm( context_len=<context>, horizon_len=<horizon>, input_patch_len=32, output_patch_len=128, num_layers=20, model_dims=1280, backend=<backend>, ) tfm.load_from_checkpoint(repo_id="google/timesfm-1.0-200m")

Note that the four parameters are fixed to load the 200m model

python
input_patch_len=32, output_patch_len=128, num_layers=20, model_dims=1280,
  1. The context_len here can be set as the max context length of the model. You can provide a shorter series to the tfm.forecast() function and the model will handle it. Currently, the model handles a max context length of 512, which can be increased in later releases. The input time series can have any context length. Padding / truncation will be handled by the inference code if needed.
  1. The horizon length can be set to anything. We recommend setting it to the largest horizon length you would need in the forecasting tasks for your application. We generally recommend horizon length <= context length but it is not a requirement in the function call.

Perform inference

We provide APIs to forecast from either array inputs or pandas dataframe. Both forecast methods expect (1) the input time series contexts, (2) along with their frequencies. Please look at the documentation of the functions tfm.forecast() and tfm.forecast_on_df() for detailed instructions.

In particular, regarding the frequency, TimesFM expects a categorical indicator valued in {0, 1, 2}:

  • 0 (default): high frequency, long horizon time series. We recommend using this for time series up to daily granularity.
  • 1: medium frequency time series. We recommend using this for weekly and monthly data.
  • 2: low frequency, short horizon time series. We recommend using this for anything beyond monthly, e.g. quarterly or yearly.

This categorical value should be directly provided with the array inputs. For dataframe inputs, we convert the conventional letter coding of frequencies to our expected categories, that

  • 0: T, MIN, H, D, B, U
  • 1: W, M
  • 2: Q, Y

Notice you do NOT have to strictly follow our recommendation here. Although this is our setup during model training and we expect it to offer the best forecast result, you can also view the frequency input as a free parameter and modify it per your specific use case.

Examples:

Array inputs, with the frequencies set to low, medium, and high respectively.

python
import numpy as np forecast_input = [ np.sin(np.linspace(0, 20, 100)) np.sin(np.linspace(0, 20, 200)), np.sin(np.linspace(0, 20, 400)), ] frequency_input = [0, 1, 2] point_forecast, experimental_quantile_forecast = tfm.forecast( forecast_input, freq=frequency_input, )

pandas dataframe, with the frequency set to "M" monthly.

python
import pandas as pd # e.g. input_df is # unique_id ds y # 0 T1 1975-12-31 697458.0 # 1 T1 1976-01-31 1187650.0 # 2 T1 1976-02-29 1069690.0 # 3 T1 1976-03-31 1078430.0 # 4 T1 1976-04-30 1059910.0 # ... ... ... ... # 8175 T99 1986-01-31 602.0 # 8176 T99 1986-02-28 684.0 # 8177 T99 1986-03-31 818.0 # 8178 T99 1986-04-30 836.0 # 8179 T99 1986-05-31 878.0 forecast_df = tfm.forecast_on_df( inputs=input_df, freq="M", # monthly value_name="y", num_jobs=-1, )
Card content reproduced from huggingface.co/google/timesfm-1.0-200m under the upstream license. Rendering trims fenced HTML, raw widgets and tables for safety; tap the link for the untouched original.
§ 02 · Benchmarks

Every benchmark TimesFM has a recorded score for.

#BenchmarkArea · TaskMetricValueRankDateSource
01ETTm2Time-series · Time-series forecastingmae0.3%#1/32025-02-02source ↗
02ETTm2Time-series · Time-series forecastingmse0.3%#1/32025-02-02source ↗
03ETTh1Time-series · Time-series forecastingmse0.5%#2/32025-02-02source ↗
04ETTh2Time-series · Time-series forecastingmae0.4%#2/32025-02-02source ↗
05ETTh2Time-series · Time-series forecastingmse0.4%#2/32025-02-02source ↗
06ETTm1Time-series · Time-series forecastingmae0.4%#2/32025-02-02source ↗
07ETTm1Time-series · Time-series forecastingmse0.4%#2/32025-02-02source ↗
08ETTh1Time-series · Time-series forecastingmae0.4%#3/32025-02-02source ↗
Rank column shows this model’s position vs all other models scored on the same benchmark + metric (competitors after the slash). #1 in red means current SOTA. Sorted by rank, then newest result.
§ 03 · Strengths by area

Where TimesFM actually performs.

Time-series
4
benchmarks
avg rank #1.9
§ 04 · Papers

1 paper with results for TimesFM.

  1. 2025-02-02· Time Series· 8 results

    Sundial: A Family of Highly Capable Time Series Foundation Models

    Siqi Liu, Yujing Wang, Yuyao Zhang
§ 06 · Sources & freshness

Where these numbers come from.

Sundial Table 1
8
results
8 of 8 rows marked verified.