We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4b3e74 commit 975dba5Copy full SHA for 975dba5
README.md
@@ -73,7 +73,7 @@ pip install git+https://github.com/amazon-science/chronos-forecasting.git
73
A minimal example showing how to perform forecasting using Chronos models:
74
75
```python
76
-import pandas as pd
+import pandas as pd # requires: pip install pandas
77
import torch
78
from chronos import ChronosPipeline
79
@@ -104,8 +104,7 @@ print(ChronosPipeline.predict.__doc__)
104
We can now visualize the forecast:
105
106
107
-# requires: pip install matplotlib
108
-import matplotlib.pyplot as plt
+import matplotlib.pyplot as plt # requires: pip install matplotlib
109
import numpy as np
110
111
forecast_index = range(len(df), len(df) + 12)
0 commit comments