Skip to content

Commit

Permalink
Checkout OMZ (openvinotoolkit#25709)
Browse files Browse the repository at this point in the history
### Details:
- took changes from
openvinotoolkit#25661
### Tickets:
 - *ticket-id*
  • Loading branch information
akuporos authored Jul 25, 2024
1 parent 0c598f4 commit 8b18e87
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ opencv-python>=4.5
paddlepaddle==2.6.1
protobuf>=3.18.1,<4.0.0
py>=1.9.0
pytest>=5.0,<7.5
pytest>=5.0,<8.4
pytest-dependency==0.5.1
pytest-html==4.1.1
pytest-timeout==2.2.0
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e_tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ scikit-image>=0.17.2
tabulate==0.9.0

pytest>=5.0,<=7.0.1; python_version < '3.10'
pytest==7.2.0; python_version >= '3.10'
pytest==8.3.1; python_version >= '3.10'
pytest-cov==2.11.1
# pytest-html==1.19.0
pytest-html
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/open_model_zoo
Submodule open_model_zoo updated 30 files
+1 −0 .github/workflows/accuracy_checker.yml
+1 −0 .github/workflows/cpp_gapi-demos.yml
+1 −0 .github/workflows/model_api.yml
+1 −1 demos/classification_benchmark_demo/cpp/main.cpp
+2 −2 demos/common/python/model_zoo/model_api/README.md
+5 −0 tools/accuracy_checker/accuracy_checker/adapters/README.md
+2 −0 tools/accuracy_checker/accuracy_checker/adapters/__init__.py
+68 −0 tools/accuracy_checker/accuracy_checker/adapters/yolo.py
+3 −1 tools/accuracy_checker/accuracy_checker/annotation_converters/__init__.py
+39 −3 tools/accuracy_checker/accuracy_checker/annotation_converters/convert.py
+192 −0 tools/accuracy_checker/accuracy_checker/annotation_converters/hpatches.py
+4 −3 tools/accuracy_checker/accuracy_checker/annotation_converters/ms_coco.py
+1 −1 tools/accuracy_checker/accuracy_checker/config/config_validator.py
+2 −1 tools/accuracy_checker/accuracy_checker/data_readers/__init__.py
+36 −2 tools/accuracy_checker/accuracy_checker/data_readers/annotation_readers.py
+10 −1 tools/accuracy_checker/accuracy_checker/data_readers/data_reader.py
+10 −0 tools/accuracy_checker/accuracy_checker/launcher/input_feeder.py
+93 −12 tools/accuracy_checker/accuracy_checker/launcher/pytorch_launcher.py
+12 −0 tools/accuracy_checker/accuracy_checker/launcher/pytorch_launcher_readme.md
+2 −0 tools/accuracy_checker/accuracy_checker/metrics/__init__.py
+169 −0 tools/accuracy_checker/accuracy_checker/metrics/matches_homography.py
+7 −1 tools/accuracy_checker/accuracy_checker/representation/__init__.py
+29 −0 tools/accuracy_checker/accuracy_checker/representation/image_feature_representation.py
+1 −1 tools/accuracy_checker/requirements-test.in
+1 −1 tools/accuracy_checker/setup.py
+4 −3 tools/accuracy_checker/tests/test_adapters.py
+67 −0 tools/accuracy_checker/tests/test_convert.py
+26 −16 tools/accuracy_checker/tests/test_detection_metrics.py
+7 −7 tools/accuracy_checker/tests/test_preprocessor.py
+2 −2 tools/accuracy_checker/tests/test_regression_metrics.py
2 changes: 1 addition & 1 deletion tools/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mxnet~=1.2.0; sys_platform == 'win32'
mxnet>=1.7.0.post2,<=1.9.1; sys_platform != 'win32'
onnx>=1.8.1,<=1.15.0
networkx<=3.1.0
pytest>=5.0,<7.3
pytest>=5.0,<8.4
protobuf>=3.18.1,<4.0.0
defusedxml>=0.7.1
requests>=2.25.1
Expand Down

0 comments on commit 8b18e87

Please sign in to comment.