Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update OV to 2023.1 #2505

Merged
merged 19 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ natsort>=6.0.0
prettytable
protobuf>=3.20.0
pyyaml
datumaro~=1.5.0
datumaro~=1.6.0rc0
psutil
scipy>=1.8
bayesian-optimization>=1.2.0
Expand Down
4 changes: 2 additions & 2 deletions requirements/openvino.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
nncf==2.6.0
onnx==1.13.0
openvino-model-api==0.1.6
openvino==2023.0
openvino-dev==2023.0
openvino==2023.1.0
openvino-dev==2023.1.0
openvino-telemetry>=2022.1.0
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
openvino==2023.0
openvino-model-api==0.1.6
otx @ git+https://github.com/openvinotoolkit/training_extensions/@4bfbf8a4873d3d39a369cb2c3f08cfb358feb21e#egg=otx
otx @ git+https://github.com/openvinotoolkit/training_extensions/@0e1200f4cc5343dcac597674fc97a898fc9829c2#egg=otx
numpy>=1.21.0,<=1.23.5 # np.bool was removed in 1.24.0 which was used in openvino runtime
18 changes: 12 additions & 6 deletions tests/e2e/cli/instance_segmentation/test_tiling_instseg.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,11 @@ def test_otx_eval(self, template, tmp_dir_path):
@e2e_pytest_component
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
@pytest.mark.parametrize("template", templates, ids=templates_ids)
@pytest.mark.skip(reason="Issue#2290: MaskRCNN shows degraded performance when inferencing in OpenVINO")
@pytest.mark.parametrize("half_precision", [True, False])
def test_otx_eval_openvino(self, template, tmp_dir_path, half_precision):
tmp_dir_path = tmp_dir_path / "tiling_ins_seg"
if "ResNet50" in template.name:
pytest.skip(reason="Issue#2290: MaskRCNN shows degraded performance when inferencing in OpenVINO")
otx_eval_openvino_testing(template, tmp_dir_path, otx_dir, args, threshold=0.2, half_precision=half_precision)

@e2e_pytest_component
Expand All @@ -140,9 +141,10 @@ def test_otx_explain(self, template, tmp_dir_path):
@e2e_pytest_component
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
@pytest.mark.parametrize("template", templates, ids=templates_ids)
@pytest.mark.skip(reason="Issue#2290: MaskRCNN shows degraded performance when inferencing in OpenVINO")
def test_otx_explain_openvino(self, template, tmp_dir_path):
tmp_dir_path = tmp_dir_path / "tiling_ins_seg"
if "ResNet50" in template.name:
pytest.skip(reason="Issue#2290: MaskRCNN shows degraded performance when inferencing in OpenVINO")
otx_explain_openvino_testing(template, tmp_dir_path, otx_dir, args)

@e2e_pytest_component
Expand All @@ -155,33 +157,37 @@ def test_otx_demo(self, template, tmp_dir_path):
@e2e_pytest_component
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
@pytest.mark.parametrize("template", templates, ids=templates_ids)
@pytest.mark.skip(reason="Issue#2290: MaskRCNN shows degraded performance when inferencing in OpenVINO")
def test_otx_demo_openvino(self, template, tmp_dir_path):
tmp_dir_path = tmp_dir_path / "tiling_ins_seg"
if "ResNet50" in template.name:
pytest.skip(reason="Issue#2290: MaskRCNN shows degraded performance when inferencing in OpenVINO")
otx_demo_openvino_testing(template, tmp_dir_path, otx_dir, args)

@e2e_pytest_component
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
@pytest.mark.parametrize("template", templates, ids=templates_ids)
@pytest.mark.skip(reason="Issue#2290: MaskRCNN shows degraded performance when inferencing in OpenVINO")
def test_otx_deploy_openvino(self, template, tmp_dir_path):
if "ResNet50" in template.name:
pytest.skip(reason="Issue#2290: MaskRCNN shows degraded performance when inferencing in OpenVINO")
tmp_dir_path = tmp_dir_path / "tiling_ins_seg"
otx_deploy_openvino_testing(template, tmp_dir_path, otx_dir, args)

@e2e_pytest_component
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
@pytest.mark.parametrize("template", templates, ids=templates_ids)
@pytest.mark.skip(reason="Issue#2290: MaskRCNN shows degraded performance when inferencing in OpenVINO")
def test_otx_eval_deployment(self, template, tmp_dir_path):
tmp_dir_path = tmp_dir_path / "tiling_ins_seg"
if "ResNet50" in template.name:
pytest.skip(reason="Issue#2290: MaskRCNN shows degraded performance when inferencing in OpenVINO")
otx_eval_deployment_testing(template, tmp_dir_path, otx_dir, args, threshold=0.0)

@e2e_pytest_component
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
@pytest.mark.parametrize("template", templates, ids=templates_ids)
@pytest.mark.skip(reason="Issue#2290: MaskRCNN shows degraded performance when inferencing in OpenVINO")
def test_otx_demo_deployment(self, template, tmp_dir_path):
tmp_dir_path = tmp_dir_path / "tiling_ins_seg"
if "ResNet50" in template.name:
pytest.skip(reason="Issue#2290: MaskRCNN shows degraded performance when inferencing in OpenVINO")
otx_demo_deployment_testing(template, tmp_dir_path, otx_dir, args)

@e2e_pytest_component
Expand Down