Skip to content

Commit 3d514fd

Browse files
committed
Fix AC import
1 parent cf7ffb8 commit 3d514fd

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

demos/time_series_forecasting_demo/python/README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ The program provides an interactive CLI interface that gets a test dataset in .p
1212

1313
## Preparing to Run
1414

15-
Install required dependencies with command:
16-
17-
```sh
18-
pip install -r requirements.txt
19-
```
20-
2115
The list of models supported by the demo is in `<omz_dir>/demos/whiteboard_inpainting_demo/python/models.lst` file.
2216
This file can be used as a parameter for [Model Downloader](../../../tools/model_tools/README.md) and Converter to download and, if necessary, convert models to OpenVINO Inference Engine format (\*.xml + \*.bin).
2317

demos/time_series_forecasting_demo/python/time_series_forecasting_demo.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
import matplotlib.pyplot as plt
2222
import matplotlib.animation as animation
2323
from openvino.runtime import Core, get_version
24-
from accuracy_checker.dataset import read_annotation
24+
from openvino.tools.accuracy_checker.dataset import read_annotation
25+
2526

2627
log.basicConfig(format='[ %(levelname)s ] %(message)s', level=log.DEBUG, stream=sys.stdout)
2728

0 commit comments

Comments
 (0)