Update model card with Chronos-2 paper link, GitHub repo, `transformers` tag, and full citation
Browse filesThis PR updates the model card for `chronos-bolt-tiny` to reflect the latest information and improve its discoverability and utility on the Hugging Face Hub.
Specifically, it:
- Adds `library_name: transformers` to the metadata, enabling the automated "Load with Transformers" usage widget, as the model is based on the T5 architecture and uses the Transformers library.
- Adds a prominent link to the [Chronos-2: From Univariate to Universal Forecasting](https://huggingface.co/papers/2510.15821) paper at the top of the model card, as this is the paper in which the model was presented.
- Adds a direct link to the [Chronos Forecasting GitHub repository](https://github.com/amazon-science/chronos-forecasting) for easy access to the code.
- Updates the `Citation` section to include both the original Chronos paper and the Chronos-2 paper, aligning with the comprehensive citation provided in the GitHub repository's README.
These changes enhance the model card's completeness and help users better understand and utilize the model.
|
@@ -1,13 +1,19 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
pipeline_tag: time-series-forecasting
|
|
|
|
| 4 |
tags:
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
# Chronos-Bolt⚡ (Tiny)
|
|
@@ -151,7 +157,7 @@ forecast = pipeline.predict(
|
|
| 151 |
|
| 152 |
## Citation
|
| 153 |
|
| 154 |
-
If you find Chronos or Chronos-Bolt models useful for your research, please consider citing the associated
|
| 155 |
|
| 156 |
```
|
| 157 |
@article{ansari2024chronos,
|
|
@@ -162,8 +168,16 @@ If you find Chronos or Chronos-Bolt models useful for your research, please cons
|
|
| 162 |
year={2024},
|
| 163 |
url={https://openreview.net/forum?id=gerNCVqqtR}
|
| 164 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 165 |
```
|
| 166 |
|
| 167 |
## License
|
| 168 |
|
| 169 |
-
This project is licensed under the Apache-2.0 License.
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
pipeline_tag: time-series-forecasting
|
| 4 |
+
library_name: transformers
|
| 5 |
tags:
|
| 6 |
+
- time series
|
| 7 |
+
- forecasting
|
| 8 |
+
- pretrained models
|
| 9 |
+
- foundation models
|
| 10 |
+
- time series foundation models
|
| 11 |
+
- time-series
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
The Chronos-Bolt (Tiny) model was presented in the paper [Chronos-2: From Univariate to Universal Forecasting](https://huggingface.co/papers/2510.15821).
|
| 15 |
+
The code for this model can be found in the [Chronos Forecasting GitHub repository](https://github.com/amazon-science/chronos-forecasting).
|
| 16 |
+
|
| 17 |
---
|
| 18 |
|
| 19 |
# Chronos-Bolt⚡ (Tiny)
|
|
|
|
| 157 |
|
| 158 |
## Citation
|
| 159 |
|
| 160 |
+
If you find Chronos or Chronos-Bolt models useful for your research, please consider citing the associated papers:
|
| 161 |
|
| 162 |
```
|
| 163 |
@article{ansari2024chronos,
|
|
|
|
| 168 |
year={2024},
|
| 169 |
url={https://openreview.net/forum?id=gerNCVqqtR}
|
| 170 |
}
|
| 171 |
+
|
| 172 |
+
@article{ansari2025chronos2,
|
| 173 |
+
title = {Chronos-2: From Univariate to Universal Forecasting},
|
| 174 |
+
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},
|
| 175 |
+
journal = {arXiv preprint arXiv:2510.15821},
|
| 176 |
+
year = {2025},
|
| 177 |
+
url = {https://arxiv.org/abs/2510.15821}
|
| 178 |
+
}
|
| 179 |
```
|
| 180 |
|
| 181 |
## License
|
| 182 |
|
| 183 |
+
This project is licensed under the Apache-2.0 License.
|