Time Series Forecasting
Chronos
Safetensors
t5
time series
forecasting
foundation models
pretrained models
Instructions to use CollectionStudio/chronos-2-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Chronos
How to use CollectionStudio/chronos-2-small with Chronos:
pip install chronos-forecasting
import pandas as pd from chronos import BaseChronosPipeline pipeline = BaseChronosPipeline.from_pretrained("CollectionStudio/chronos-2-small", device_map="cuda") # Load historical data context_df = pd.read_csv("https://autogluon.s3.us-west-2.amazonaws.com/datasets/timeseries/misc/AirPassengers.csv") # Generate predictions pred_df = pipeline.predict_df( context_df, prediction_length=36, # Number of steps to forecast quantile_levels=[0.1, 0.5, 0.9], # Quantiles for probabilistic forecast id_column="item_id", # Column identifying different time series timestamp_column="Month", # Column with datetime information target="#Passengers", # Column(s) with time series values to predict ) - Notebooks
- Google Colab
- Kaggle
| license: apache-2.0 | |
| model_id: chronos-2-small | |
| 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-Small | |
| This is the _small_ variant of the Chronos-2 model with 28M parameters. For usage and details on the Chronos-2 model, please refer to https://huggingface.co/autogluon/chronos-2. | |
| ## 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} | |
| } | |
| ``` |