mirror of
https://github.com/amazon-science/chronos-forecasting
synced 2026-05-23 17:48:23 +00:00
Fix pandas install instruction (#326)
*Issue #, if available:* *Description of changes:* By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
This commit is contained in:
parent
7a8427d18e
commit
330c5438a6
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ pip install chronos-forecasting
|
|||
A minimal example showing how to perform forecasting using Chronos-2:
|
||||
|
||||
```python
|
||||
import pandas as pd # requires: pip install pandas
|
||||
import pandas as pd # requires: pip install 'pandas[pyarrow]'
|
||||
from chronos import Chronos2Pipeline
|
||||
|
||||
pipeline = Chronos2Pipeline.from_pretrained("s3://autogluon/chronos-2", device_map="cuda")
|
||||
|
|
|
|||
Loading…
Reference in a new issue