Instructions to use amazon/chronos-t5-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Chronos
How to use amazon/chronos-t5-small with Chronos:
pip install chronos-forecasting
import pandas as pd from chronos import BaseChronosPipeline pipeline = BaseChronosPipeline.from_pretrained("amazon/chronos-t5-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
Fix: Add missing matplotlib installation in example code
Browse files## Description
The example code fails with `ModuleNotFoundError: No module named 'matplotlib'` when run in a clean environment. This is due to the `matplotlib` package not being pre-installed.
## Changes
Added the following line at the beginning of the script to ensure all required dependencies are available:
```python
!{sys.executable} -m pip install matplotlib
```
## Testing
The code has been successfully tested and runs without error.
## Note
This contribution is part of an ongoing research initiative to systematically identify and correct faulty example code in Hugging Face Model Cards.
We would appreciate a timely review and integration of this patch to support code reliability and enhance reproducibility for downstream users.
|
@@ -53,6 +53,7 @@ pip install git+https://github.com/amazon-science/chronos-forecasting.git
|
|
| 53 |
A minimal example showing how to perform inference using Chronos models:
|
| 54 |
|
| 55 |
```python
|
|
|
|
| 56 |
import matplotlib.pyplot as plt
|
| 57 |
import numpy as np
|
| 58 |
import pandas as pd
|
|
|
|
| 53 |
A minimal example showing how to perform inference using Chronos models:
|
| 54 |
|
| 55 |
```python
|
| 56 |
+
!{sys.executable} -m pip install matplotlib
|
| 57 |
import matplotlib.pyplot as plt
|
| 58 |
import numpy as np
|
| 59 |
import pandas as pd
|