Skip to main content

timesfm-forecast

TimesFM — Time Series Foundation Model de Google Research (22K⭐). Modelo fundacional pre-entrenado para forecasting de series temporales. 100M+ timepoints.

インストールへ移動

ソース情報

リポジトリ
Ntizar/NtizarBrainMasterMind
ソースの最終更新活動
2026年6月26日 12:05
検出された SKILL.md の言語
スペイン語
スター
2
フォーク
0

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
timesfm-forecast
version
1.0.0
description
TimesFM — Time Series Foundation Model de Google Research (22K⭐). Modelo fundacional pre-entrenado para forecasting de series temporales. 100M+ timepoints.
tags
["timeseries","forecasting","google","foundation-model","ml","prediction"]
# TimesFM — Time Series Foundation Model ## Resumen TimesFM (Time Series Foundation Model) de Google Research es un **modelo pre-entrenado** para forecasting de series temporales. Entrenado en **100 millones+ de timepoints** de diversas fuentes (dominios públicos). ## Características - **Foundation model:** No necesitas entrenar — zero-shot forecasting - **Multi-dominio:** Finanzas, energía, clima, IoT, tráfico, demanda - **Escala:** 100M+ timepoints → cubre casi cualquier patrón - **API simple:** `pip install timesfm` → `model.forecast()` ## Instalación ```bash pip install timesfm ``` ## Uso ```python import timesfm # Cargar modelo pre-entrenado model = timesfm.TimesFm( hparams=timesfm.TimesFmHparams( backend="gpu", num_layers=20, context_len=512, horizon_len=128, ), ) # Forecast forecast = model.forecast( inputs=timeseries_data, # shape: (batch, time, features) freq="D", # Daily ) # Con quantiles quantile_forecast = model.forecast_with_quantiles( inputs=timeseries_data, quantiles=[0.1, 0.5, 0.9], # P10, P50, P90 freq="H", # Hourly ) ``` ## Aplicaciones en Mastermind - **ESIOS:** Forecast de demanda eléctrica horaria - **Monte Carlo:** Como base de distribución temporal para simulaciones - **Dashboard:** Integrar como componente de predicción en dashboards ## Referencia - Repo: `google-research/timesfm` - Paper: "A Decoder-only Foundation Model for Time-Series Forecasting"
GitHubで見る