Initial org card
Browse files
README.md
CHANGED
|
@@ -1,10 +1,90 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: 📈
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: TSFM.ai
|
| 3 |
emoji: 📈
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: purple
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
short_description: Time-series foundation models as a service.
|
| 9 |
---
|
| 10 |
|
| 11 |
+
<div align="center">
|
| 12 |
+
|
| 13 |
+
# TSFM.ai
|
| 14 |
+
|
| 15 |
+
**Time-series foundation models as a service.**
|
| 16 |
+
|
| 17 |
+
One API. 49+ pretrained models. Zero fine-tuning required.
|
| 18 |
+
|
| 19 |
+
[tsfm.ai](https://tsfm.ai) · [docs](https://tsfm.ai/docs) · [API reference](https://tsfm.ai/docs/api) · [pricing](https://tsfm.ai/pricing)
|
| 20 |
+
|
| 21 |
+
</div>
|
| 22 |
+
|
| 23 |
+
---
|
| 24 |
+
|
| 25 |
+
## What we do
|
| 26 |
+
|
| 27 |
+
TSFM.ai hosts the largest catalog of **pretrained time-series foundation models** behind a single, consistent inference API. Bring a history — numbers, timestamps, optional covariates — and get a calibrated forecast with quantile bands, without training or fine-tuning.
|
| 28 |
+
|
| 29 |
+
We serve every major open-weights forecaster:
|
| 30 |
+
|
| 31 |
+
- **Chronos / Chronos-Bolt / Chronos-2** (Amazon)
|
| 32 |
+
- **TimesFM 2.0 / 2.5** (Google)
|
| 33 |
+
- **Moirai 1.x / 2.0 / Moirai-MoE** (Salesforce)
|
| 34 |
+
- **Granite TTM / PatchTST / FlowState** (IBM Research)
|
| 35 |
+
- **TiRex** (NX-AI)
|
| 36 |
+
- **Toto** (Datadog)
|
| 37 |
+
- **TimeMoE** (Maple / Tsinghua)
|
| 38 |
+
- **MOMENT** (AutonLab, CMU)
|
| 39 |
+
- **Sundial / Timer / TimeMixer++** (THUML)
|
| 40 |
+
- **Lag-Llama**, **TEMPO**, **Kairos**, **YingLong**, **Kronos**, **TSPulse** and more.
|
| 41 |
+
|
| 42 |
+
If the model is on the Hub and has weights, we're probably already serving it. If not, open an issue on the repo and we'll prioritize it.
|
| 43 |
+
|
| 44 |
+
## Why time-series deserves its own provider
|
| 45 |
+
|
| 46 |
+
General-purpose LLM inference stacks are a bad fit for forecasting. Time-series models have narrow context windows, variable history lengths, quantile outputs, exogenous covariates, and probabilistic sampling — none of which map cleanly onto OpenAI-style APIs. We built TSFM.ai specifically for this surface: our request/response schema carries `past_values`, `past_timestamps`, `past_covariates`, `future_covariates`, `static_covariates`, `quantiles`, and `num_samples` as first-class fields. Batch forecasting, ensemble routing, and MCP tooling all compose cleanly on top.
|
| 47 |
+
|
| 48 |
+
## Get started
|
| 49 |
+
|
| 50 |
+
```bash
|
| 51 |
+
curl -X POST https://api.tsfm.ai/v1/forecast \
|
| 52 |
+
-H "Authorization: Bearer $TSFM_API_KEY" \
|
| 53 |
+
-H "Content-Type: application/json" \
|
| 54 |
+
-d '{
|
| 55 |
+
"model": "amazon/chronos-2",
|
| 56 |
+
"inputs": [{"target": [10, 12, 11, 13, 14, 15, 14, 16, 18, 17]}],
|
| 57 |
+
"parameters": {"prediction_length": 24, "quantiles": [0.1, 0.5, 0.9]}
|
| 58 |
+
}'
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
```python
|
| 62 |
+
from tsfm import Tsfm
|
| 63 |
+
|
| 64 |
+
client = Tsfm()
|
| 65 |
+
forecast = client.forecast(
|
| 66 |
+
model="amazon/chronos-2",
|
| 67 |
+
inputs=[{"target": [10, 12, 11, 13, 14, 15, 14, 16, 18, 17]}],
|
| 68 |
+
parameters={"prediction_length": 24, "quantiles": [0.1, 0.5, 0.9]},
|
| 69 |
+
)
|
| 70 |
+
print(forecast.predictions[0].mean)
|
| 71 |
+
```
|
| 72 |
+
|
| 73 |
+
## Benchmarks
|
| 74 |
+
|
| 75 |
+
We publish continuously-updated leaderboards scoring every hosted model across **GIFT-Eval** and the **Impermanent** long-horizon benchmark suite:
|
| 76 |
+
|
| 77 |
+
- [GIFT-Eval leaderboard](https://tsfm.ai/benchmarks/gift-eval)
|
| 78 |
+
- [Impermanent leaderboard](https://tsfm.ai/benchmarks/impermanent)
|
| 79 |
+
|
| 80 |
+
## Learn more
|
| 81 |
+
|
| 82 |
+
- [Blog](https://tsfm.ai/blog) — model deep-dives, benchmark analyses, architectural notes.
|
| 83 |
+
- [Use cases](https://tsfm.ai/use-cases) — demand planning, energy load, telemetry, financial time series.
|
| 84 |
+
- [Integrations](https://tsfm.ai/integrations) — Python SDK, Node SDK, CLI, MCP tools.
|
| 85 |
+
|
| 86 |
+
## Contact
|
| 87 |
+
|
| 88 |
+
- **General:** [hello@tsfm.ai](mailto:hello@tsfm.ai)
|
| 89 |
+
- **Enterprise:** [sales@tsfm.ai](mailto:sales@tsfm.ai)
|
| 90 |
+
- **Website:** [tsfm.ai](https://tsfm.ai)
|