|
9 | 9 | [](https://arxiv.org/abs/2403.07815)
|
10 | 10 | [](https://huggingface.co/datasets/autogluon/chronos_datasets)
|
11 | 11 | [](https://huggingface.co/collections/amazon/chronos-models-65f1791d630a8d57cb718444)
|
| 12 | +[](https://github.com/autogluon/fev) |
| 13 | +[](notebooks/deploy-chronos-bolt-to-amazon-sagemaker.ipynb) |
12 | 14 | [](https://github.com/amazon-science/chronos-forecasting/issues?q=is%3Aissue+label%3AFAQ)
|
13 | 15 | [](https://opensource.org/licenses/Apache-2.0)
|
14 | 16 |
|
15 | 17 | </div>
|
16 | 18 |
|
17 |
| -## 🚀 News |
18 | 19 |
|
19 |
| -- **26 Nov 2024**: ⚡️ Chronos-Bolt models released [on HuggingFace](https://huggingface.co/collections/amazon/chronos-models-65f1791d630a8d57cb718444). Chronos-Bolt models are more accurate (5% lower error), up to 250x faster and 20x more memory efficient than the original Chronos models of the same size! |
20 |
| -- **27 Jun 2024**: 🚀 [Released datasets](https://huggingface.co/datasets/autogluon/chronos_datasets) used in the paper and an [evaluation script](./scripts/README.md#evaluating-chronos-models) to compute the WQL and MASE scores reported in the paper. |
| 20 | +## 🚀 News |
| 21 | +- **14 Feb 2024**: 🚀 Chronos-Bolt is now available on Amazon SageMaker JumpStart! Check out the [tutorial notebook](notebooks/deploy-chronos-bolt-to-amazon-sagemaker.ipynb) to learn how to deploy Chronos endpoints for production use in 3 lines of code. |
| 22 | +- **12 Dec 2024**: 📊 We released [`fev`](https://github.com/autogluon/fev), a lightweight package for benchmarking time series forecasting models based on the [Hugging Face `datasets`](https://huggingface.co/docs/datasets/en/index) library. |
| 23 | +- **26 Nov 2024**: ⚡️ Chronos-Bolt models released [on HuggingFace](https://huggingface.co/collections/amazon/chronos-models-65f1791d630a8d57cb718444). Chronos-Bolt models are more accurate (5% lower error), up to 250x faster and 20x more memory efficient than the original Chronos models of the same size! |
| 24 | +- **27 Jun 2024**: 🚀 [Released datasets](https://huggingface.co/datasets/autogluon/chronos_datasets) used in the paper and an [evaluation script](./scripts/README.md#evaluating-chronos-models) to compute the WQL and MASE scores reported in the paper. |
21 | 25 | - **17 May 2024**: 🐛 Fixed an off-by-one error in bin indices in the `output_transform`. This simple fix significantly improves the overall performance of Chronos. We will update the results in the next revision on ArXiv.
|
22 | 26 | - **10 May 2024**: 🚀 We added the code for pretraining and fine-tuning Chronos models. You can find it in [this folder](./scripts/training). We also added [a script](./scripts/kernel-synth.py) for generating synthetic time series data from Gaussian processes (KernelSynth; see Section 4.2 in the paper for details). Check out the [usage examples](./scripts/).
|
23 | 27 | - **19 Apr 2024**: 🚀 Chronos is now supported on [AutoGluon-TimeSeries](https://auto.gluon.ai/stable/tutorials/timeseries/index.html), the powerful AutoML package for time series forecasting which enables model ensembles, cloud deployments, and much more. Get started with the [tutorial](https://auto.gluon.ai/stable/tutorials/timeseries/forecasting-chronos.html).
|
@@ -61,7 +65,7 @@ The models in this repository are based on the [T5 architecture](https://arxiv.o
|
61 | 65 |
|
62 | 66 | ### Zero-Shot Results
|
63 | 67 |
|
64 |
| -The following figure showcases the remarkable **zero-shot** performance of Chronos and Chronos-Bolt models on 27 datasets against local models, task-specific models and other pretrained models. For details on the evaluation setup and other results, please refer to [the paper](https://arxiv.org/abs/2403.07815). |
| 68 | +The following figure showcases the remarkable **zero-shot** performance of Chronos and Chronos-Bolt models on 27 datasets against local models, task-specific models and other pretrained models. For details on the evaluation setup and other results, please refer to [the paper](https://arxiv.org/abs/2403.07815). |
65 | 69 |
|
66 | 70 | <p align="center">
|
67 | 71 | <img src="https://raw.githubusercontent.com/amazon-science/chronos-forecasting/main/figures/zero_shot-agg_scaled_score.svg" width="100%">
|
@@ -89,8 +93,10 @@ git clone https://github.com/amazon-science/chronos-forecasting.git
|
89 | 93 | cd chronos-forecasting && pip install --editable ".[training]"
|
90 | 94 | ```
|
91 | 95 |
|
92 |
| -> [!TIP] |
93 |
| -> This repository is intended for research purposes and provides a minimal interface to Chronos models. The recommended way of using Chronos for production use cases is through [AutoGluon](https://auto.gluon.ai), which features effortless fine-tuning, augmenting Chronos models with exogenous information through covariate regressors, ensembling with other statistical and machine learning models, as well as seamless deployments on AWS with SageMaker 🧠. Check out the AutoGluon Chronos [tutorial](https://auto.gluon.ai/stable/tutorials/timeseries/forecasting-chronos.html). |
| 96 | +> [!TIP] |
| 97 | +> This repository is intended for research purposes and provides a minimal interface to Chronos models. For reliable production use, we recommend the following options: |
| 98 | +> - [AutoGluon](https://auto.gluon.ai) provides effortless fine-tuning, augmenting Chronos models with exogenous information through covariate regressors, ensembling with other statistical and machine learning models. Check out the AutoGluon Chronos [tutorial](https://auto.gluon.ai/stable/tutorials/timeseries/forecasting-chronos.html). |
| 99 | +> - SageMaker JumpStart makes it easy to deploy Chronos inference endpoints to AWS with just a few lines of code. Check out [this tutorial](notebooks/deploy-chronos-bolt-to-amazon-sagemaker.ipynb) for more details. |
94 | 100 |
|
95 | 101 | ### Forecasting
|
96 | 102 |
|
|
0 commit comments