AI SeedbankHelp preserve open and free AI for humanity's future

← All models

autogluon_chronos-2

autogluon · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: 1 · Leechers: 0

Observed 2026-09-02T13:56:39Z via announce.aitorrent.org:7070.

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: apache-2.0 model_id: chronos-2 tags:

  • time series
  • forecasting
  • foundation models
  • pretrained models
  • safetensors paper:
  • https://arxiv.org/abs/2510.15821 datasets:
  • autogluon/chronos_datasets
  • Salesforce/GiftEvalPretrain leaderboards:
  • Salesforce/GIFT-Eval
  • autogluon/fev-leaderboard pipeline_tag: time-series-forecasting library_name: chronos-forecasting

Chronos-2

Update Jun 5, 2026: ☁️ Deploy Chronos-2 on AWS with AutoGluon-Cloud. Real-time, serverless, or batch inference in 3 lines of code — pandas DataFrames in, forecasts out. Check out the new deployment guide.

Chronos-2 is a 120M-parameter, encoder-only time series foundation model for zero-shot forecasting. It supports univariate, multivariate, and covariate-informed tasks within a single architecture. Inspired by the T5 encoder, Chronos-2 produces multi-step-ahead quantile forecasts and uses a group attention mechanism for efficient in-context learning across related series and covariates. Trained on a combination of real-world and large-scale synthetic datasets, it achieves state-of-the-art zero-shot accuracy among public models on fev-bench, GIFT-Eval, and Chronos Benchmark II. Chronos-2 is also highly efficient, delivering over 300 time series forecasts per second on a single A10G GPU and supporting both GPU and CPU inference.

Links

  • ☁️ Deploy on SageMaker with AutoGluon-Cloud (recommended)
  • 🚀 Deploy on SageMaker with JumpStart
  • 📄 Technical report
  • 💻 GitHub
  • 📘 Example notebook
  • 📰 Amazon Science Blog

Overview

Capability Chronos-2 Chronos-Bolt Chronos
Univariate Forecasting
Cross-learning across items
Multivariate Forecasting
Past-only (real/categorical) covariates
Known future (real/categorical) covariates 🧩 🧩
Max. Context Length 8192 2048 512
Max. Prediction Length 1024 64 64

🧩 Chronos & Chronos-Bolt do not natively support future covariates, but they can be combined with external covariate regressors (see AutoGluon tutorial). This only models per-timestep effects, not effects across time. In contrast, Chronos-2 supports all covariate types natively.

Running the model locally

For experimentation and local inference, you can use the inference package.

Install the package

pip install "chronos-forecasting>=2.0"

Make zero-shot predictions using the pandas API

import pandas as pd  # requires: pip install 'pandas[pyarrow]'
from chronos import Chronos2Pipeline

pipeline = Chronos2Pipeline.from_pretrained("amazon/chronos-2", device_map="cuda")

# Load historical target values and past values of covariates
context_df = pd.read_parquet("https://autogluon.s3.amazonaws.com/datasets/timeseries/electricity_price/train.parquet")

# (Optional) Load future values of covariates
future_df = pd.read_parquet("https://autogluon.s3.amazonaws.com/datasets/timeseries/electricity_price/test.parquet").drop(columns="target")

# Generate predictions with covariates
pred_df = pipeline.predict_df(
    context_df,
    future_df=future_df,
    prediction_length=24,  # Number of steps to forecast
    quantile_levels=[0.1, 0.5, 0.9],  # Quantiles for probabilistic forecast
    id_column="id",  # Column identifying different time series
    timestamp_column="timestamp",  # Column with datetime information
    target="target",  # Column(s) with time series values to predict
)

Production use on Amazon SageMaker

For production use, we recommend deploying Chronos-2 to Amazon SageMaker. There are two options:

  • AutoGluon-Cloud (recommended) — minimal setup with a high-level Python API: pass a pandas DataFrame in, get forecasts back. Supports real-time, serverless, and batch inference out of the box.
  • SageMaker JumpStart — fine-grained control over the deployment configuration. JSON request/response payloads only; serverless inference and batch prediction require additional setup.

☁️ AutoGluon-Cloud

Install AutoGluon-Cloud:

pip install autogluon.cloud>=0.5.0

Make predictions from a pandas DataFrame

from autogluon.cloud import TimeSeriesFoundationModel

model = TimeSeriesFoundationModel(model_name="chronos-2")

# Batch prediction
forecast_df = model.predict(df, prediction_length=24)

# Deploy & invoke a real-time endpoint
endpoint = model.deploy(instance_type="ml.g5.xlarge")
forecast_df = endpoint.predict(df, prediction_length=24)

For more details (e.g. serverless endpoints, covariate-aware forecasting), see the full deployment guide.

🚀 SageMaker JumpStart

First, update the SageMaker SDK to make sure that all the latest models are available.

pip install -U 'sagemaker<3'

Deploy an inference endpoint to SageMaker.

from sagemaker.jumpstart.model import JumpStartModel

model = JumpStartModel(
    model_id="pytorch-forecasting-chronos-2",
    instance_type="ml.g5.2xlarge",
)
predictor = model.deploy()

Now you can send time series data to the endpoint in JSON format.

payload = {
    "inputs": [
        {"target": [1.0, 2.5, ..., 12.3]}
    ],
    "parameters": {
        "prediction_length": 24,
    }
}
forecast = predictor.predict(payload)["predictions"]

For more details about the endpoint API, check out the example notebook.

Training data

More details about the training data are available in the technical report.

Citation

If you find Chronos-2 useful for your research, please consider citing the associated paper:

@article{ansari2025chronos2,
  title        = {Chronos-2: From Univariate to Universal Forecasting},
  author       = {Abdul Fatir Ansari and Oleksandr Shchur and Jaris Küken and Andreas Auer and Boran Han and Pedro Mercado and Syama Sundar Rangapuram and Huibin Shen and Lorenzo Stella and Xiyuan Zhang and Mononito Goswami and Shubham Kapoor and Danielle C. Maddix and Pablo Guerron and Tony Hu and Junming Yin and Nick Erickson and Prateek Mutalik Desai and Hao Wang and Huzefa Rangwala and George Karypis and Yuyang Wang and Michael Bohlke-Schneider},
  year         = {2025},
  url          = {https://arxiv.org/abs/2510.15821}
}

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:48c754f82f96aab175d889f81df94cbdff21f6ce&dn=autogluon_chronos-2

Open magnet in torrent client · infohash 48c754f82f96aab175d889f81df94cbdff21f6ce

Files & hashes

PathSizesha1sha256
README.md7.6 KB (7,774 B)ba74254c22542ab400ac2ff7b85eefc1a8f37027bf2c0a3320652b8f3c31cd06953dad3e7891368de7307001d80882c3075ca244
config.json1.0 KB (1,067 B)f3207394965100a2aa18820b87da3d2bbad3b1f0ef1143bfdc9c0376d9a056eefca46cb4b1ec3d0ffacd541ff56feb40fb708031
model.safetensors455.8 MB (477,930,472 B)b54b9d9aa56c47e707d19ff60e80ca6a030e4ba5ddcda3c7508bf2528087723e98a20707cc04b7f370ae275a9fd88078ddba4f42

Cite this release

Canonical URL
https://aiseedbank.org/models/autogluon_chronos-2/
Slug
autogluon_chronos-2
Infohash
48c754f82f96aab175d889f81df94cbdff21f6ce
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: autogluon_chronos-2.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryautogluon/chronos-2
Revision (pinned)60088152a34e242427b44c3100014473a0157d53
Fetched at2026-09-02T04:29:01Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:29:07Z

apache-2.0455.8 MB (477,939,313 bytes)chronos-forecastingsafetensorst5time seriesforecastingfoundation modelspretrained modelstime-series-forecastingpaper: 2403.07815paper: 2510.15821