Skip to content

Commit

Permalink
Merge pull request #1043 from openvinotoolkit/bb/fix
Browse files Browse the repository at this point in the history
[DETECTION] CVS-82196, CVS-82366
  • Loading branch information
Ilya-Krylov authored Apr 5, 2022
2 parents 433120d + f752488 commit 33d11e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
img_scale=(416, 416),
flip=False,
transforms=[
dict(type='Resize', keep_ratio=True),
dict(type='Resize', keep_ratio=False),
dict(type='RandomFlip'),
dict(type='Pad', size=(416, 416), pad_val=114.0),
dict(type='Normalize', **img_norm_cfg),
Expand Down
8 changes: 1 addition & 7 deletions external/mmdetection/tests/ote_cli/test_detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
nncf_export_testing,
nncf_eval_testing,
nncf_eval_openvino_testing,
xfail_templates,
)


Expand Down Expand Up @@ -91,12 +90,7 @@ def test_ote_eval(self, template):
ote_eval_testing(template, root, ote_dir, args)

@e2e_pytest_component
@pytest.mark.parametrize("template",
xfail_templates(
templates, (
("Custom_Object_Detection_YOLOX", "CVS-82366"),
)),
ids=templates_ids)
@pytest.mark.parametrize("template", templates, ids=templates_ids)
def test_ote_eval_openvino(self, template):
ote_eval_openvino_testing(template, root, ote_dir, args, threshold=0.1)

Expand Down

0 comments on commit 33d11e6

Please sign in to comment.