[PyOV] Raise allowed diff value for torchvision preprocessor test (#19146)

This commit is contained in:
Przemyslaw Wysocki 2023-08-16 10:28:03 +02:00 committed by GitHub
parent 2a8143f548
commit 71ac5ee301
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,7 +95,7 @@ def test_convertimagedtype():
], ],
) )
torch_result, ov_result = _infer_pipelines(test_input, preprocess_pipeline) torch_result, ov_result = _infer_pipelines(test_input, preprocess_pipeline)
assert np.max(np.absolute(torch_result - ov_result)) < 2e-04 assert np.max(np.absolute(torch_result - ov_result)) < 3e-04
@pytest.mark.parametrize( @pytest.mark.parametrize(