Skip to content

Commit 59f9366

Browse files
authored
Merge pull request #3264 from Wovchena/demos/tests-add-time_series_forecasting_demo
demos/tests: add time_series_forecasting_demo
2 parents 1f25cd9 + 3d514fd commit 59f9366

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

demos/tests/cases.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1337,6 +1337,9 @@ def single_option_cases(key, *args):
13371337
]
13381338
)),
13391339

1340+
PythonDemo(name='time_series_forecasting_demo', device_keys=[],
1341+
model_keys=['-m'], test_cases=[TestCase(options={'-h': ''})]),
1342+
13401343
PythonDemo(name='whiteboard_inpainting_demo', device_keys=['-d'],
13411344
model_keys=['-m_i', '-m_s'], test_cases=combine_cases(
13421345
TestCase(options={'-i': TestDataArg('msasl/global_crops/_nz_sivss20/clip_0017/img_%05d.jpg'),

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 IR 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)