Refine README.md as plain-text overview
Browse files
README.md
CHANGED
|
@@ -8,83 +8,27 @@ 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 |
-
|
| 74 |
|
| 75 |
-
|
| 76 |
|
| 77 |
-
-
|
| 78 |
-
- [Impermanent leaderboard](https://tsfm.ai/benchmarks/impermanent)
|
| 79 |
|
| 80 |
-
##
|
| 81 |
|
| 82 |
-
-
|
| 83 |
-
-
|
| 84 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
|
| 86 |
## Contact
|
| 87 |
|
| 88 |
-
-
|
| 89 |
-
-
|
| 90 |
-
- **Website:** [tsfm.ai](https://tsfm.ai)
|
|
|
|
| 8 |
short_description: Time-series foundation models as a service.
|
| 9 |
---
|
| 10 |
|
|
|
|
|
|
|
| 11 |
# TSFM.ai
|
| 12 |
|
| 13 |
+
**Time-series foundation models as a service.** One API. 49+ pretrained forecasters. Zero fine-tuning required.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
+
The Organization Card you see at [huggingface.co/TSFM-ai](https://huggingface.co/TSFM-ai) is rendered from [`index.html`](./index.html) in this Space — edit that file to change the card. This README.md is kept as a plain-text overview for anyone browsing the Files tab.
|
| 16 |
|
| 17 |
+
## What we host
|
| 18 |
|
| 19 |
+
Every major open-weights time-series foundation model, served behind one consistent inference API. The canonical catalog lives in the [Collection](https://huggingface.co/collections/TSFM-ai/time-series-foundation-models-served-by-tsfmai-69e2baca51579e4b126dbf20) — 49 models across Chronos / Chronos-Bolt / Chronos-2 (Amazon), TimesFM 2.0 and 2.5 (Google), Moirai 1.x / 2.0 / Moirai-MoE (Salesforce), Granite TTM / PatchTST / FlowState (IBM Research), TiRex (NX-AI), Toto (Datadog), TimeMoE, MOMENT, Sundial, Timer, Lag-Llama, TEMPO, Kairos, YingLong, Kronos, TSPulse, and more.
|
|
|
|
| 20 |
|
| 21 |
+
## Links
|
| 22 |
|
| 23 |
+
- Website: <https://tsfm.ai>
|
| 24 |
+
- Docs: <https://tsfm.ai/docs>
|
| 25 |
+
- API reference: <https://tsfm.ai/docs/api>
|
| 26 |
+
- Pricing: <https://tsfm.ai/pricing>
|
| 27 |
+
- GIFT-Eval leaderboard: <https://tsfm.ai/benchmarks/gift-eval>
|
| 28 |
+
- Impermanent leaderboard: <https://tsfm.ai/benchmarks/impermanent>
|
| 29 |
+
- Blog: <https://tsfm.ai/blog>
|
| 30 |
|
| 31 |
## Contact
|
| 32 |
|
| 33 |
+
- General: <hello@tsfm.ai>
|
| 34 |
+
- Enterprise: <sales@tsfm.ai>
|
|
|