数据与复现统计与数据分析K-Dense-AI/claude-scientific-skills数据与复现
TI

timesfm-forecasting

维护者 Clayton Young / Superior Byte Works, LLC (@borealBytes) · 最近更新 2026年4月1日

timesfm-forecasting:TimesFM (Time Series Foundation Model) is pretrained decoder-only foundation model developed by Google Research ,用于 time-series 预测。 It works **。

Claude CodeOpenClawNanoClaw分析处理复现实验timesfm-forecastingmachine-learningpackagemachine learning & deep learning

原始来源

K-Dense-AI/claude-scientific-skills

https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/timesfm-forecasting

维护者
Clayton Young / Superior Byte Works, LLC (@borealBytes)
许可
Apache-2.0 license
最近更新
2026年4月1日

技能摘要

来自 SKILL.md 的关键信息

2 min

核心说明

  • TimesFM (Time Series Foundation Model) is pretrained decoder-only foundation model developed by Google Research ,用于 time-series 预测. It works zero-shot — feed it any univariate time series 、 it returns point forecasts ,支持 calibrated quantile prediction intervals,no training required。
  • This skill wraps TimesFM ,用于 safe,agent-friendly local inference. It includes mandatory preflight system checker that verifies RAM,GPU memory,、 disk space before model is ever loaded so agent never crashes user's machine。
  • Key numbers:TimesFM 2.5 uses 200M parameters (~800 MB on disk,~1.5 GB in RAM on CPU,~1 GB VRAM on GPU). archived v1/v2 500M-parameter model needs ~32 GB RAM. Always run system checker first。
  • uv pip install timesfm[torch]。

原始文档

SKILL.md 摘录

When to Use This Skill

Use this skill when:

  • Forecasting any univariate time series (sales, demand, sensor, vitals, price, weather)
  • You need zero-shot forecasting without training a custom model
  • You want probabilistic forecasts with calibrated prediction intervals (quantiles)
  • You have time series of any length (the model handles 1–16,384 context points)
  • You need to batch-forecast hundreds or thousands of series efficiently
  • You want a foundation model approach instead of hand-tuning ARIMA/ETS parameters

Do not use this skill when:

  • You need classical statistical models with coefficient interpretation → use statsmodels
  • You need time series classification or clustering → use aeon
  • You need multivariate vector autoregression or Granger causality → use statsmodels
  • Your data is tabular (not temporal) → use scikit-learn

Note on Anomaly Detection: TimesFM does not have built-in anomaly detection, but you can use the quantile forecasts as prediction intervals — values outside the 90% CI (q10–q90) are statistically unusual. See the examples/anomaly-detection/ directory for a full example.

⚠️ Mandatory Preflight: System Requirements Check

CRITICAL — ALWAYS run the system checker before loading the model for the first time.

This script checks:

  1. Available RAM — warns if below 4 GB, blocks if below 2 GB
  2. GPU availability — detects CUDA/MPS devices and VRAM
  3. Disk space — verifies room for the ~800 MB model download
  4. Python version — requires 3.10+
  5. Existing installation — checks if timesfm and torch are installed

Note: Model weights are NOT stored in this repository. TimesFM weights (~800 MB) download on-demand from HuggingFace on first use and cache in ~/.cache/huggingface/. The preflight checker ensures sufficient resources before any download begins.

适用场景

  • 预测 **any univariate time series** (sales,demand,sensor,vitals,price,weather)。
  • You need **。

不适用场景

  • Do not rely on this catalog entry alone ,用于 installation 或 maintenance details。

相关技能

相关技能

返回目录
AE
数据与复现统计与数据分析

aeon

aeon:Aeon是一个兼容 scikit-learn Python 工具包 ,用于 时序机器学习。 It provides state-of- -art algorithms ,用于 分类,回归,聚类,预测,异常检测,分割,、 相似性检索…

Claude CodeOpenClaw分析处理
K-Dense-AI/claude-scientific-skills查看
AR
数据与复现统计与数据分析

arxiv-database

arxiv-database:This skill provides Python tools ,用于 searching 、 retrieving preprints ,面向 arXiv.org ,通过 its public Atom A…

Claude Code分析处理
K-Dense-AI/claude-scientific-skills查看
BI
数据与复现统计与数据分析

bio-chipseq-differential-binding

bio-chipseq-differential-binding:Differential binding analysis ,使用 DiffBind。 比较 ChIP-seq peaks between conditions ,支持 st…

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现统计与数据分析

bio-crispr-screens-base-editing-analysis

bio-crispr-screens-base-editing-analysis:分析 base editing 、 prime editing outcomes ,涵盖 editing efficiency,bystander edits…

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看