Skip to content

Commit 975dba5

Browse files
committed
address comment
1 parent d4b3e74 commit 975dba5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ pip install git+https://github.com/amazon-science/chronos-forecasting.git
7373
A minimal example showing how to perform forecasting using Chronos models:
7474

7575
```python
76-
import pandas as pd
76+
import pandas as pd # requires: pip install pandas
7777
import torch
7878
from chronos import ChronosPipeline
7979

@@ -104,8 +104,7 @@ print(ChronosPipeline.predict.__doc__)
104104
We can now visualize the forecast:
105105

106106
```python
107-
# requires: pip install matplotlib
108-
import matplotlib.pyplot as plt
107+
import matplotlib.pyplot as plt # requires: pip install matplotlib
109108
import numpy as np
110109

111110
forecast_index = range(len(df), len(df) + 12)

0 commit comments

Comments
 (0)