From 6fb9bfac2a605609fcb7fd815cdf076df60cc46d Mon Sep 17 00:00:00 2001 From: Mateusz Tabaka Date: Tue, 8 Sep 2020 16:04:08 +0200 Subject: [PATCH] Update tolerance for candy model (#1967) --- ngraph/python/tests/test_onnx/test_additional_models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ngraph/python/tests/test_onnx/test_additional_models.py b/ngraph/python/tests/test_onnx/test_additional_models.py index 13d04f9..f8665e8 100644 --- a/ngraph/python/tests/test_onnx/test_additional_models.py +++ b/ngraph/python/tests/test_onnx/test_additional_models.py @@ -45,6 +45,7 @@ tolerance_map = { "pointilism": {"atol": 0.001, "rtol": 0.001}, "rain_princess": {"atol": 0.001, "rtol": 0.001}, "udnie": {"atol": 0.001, "rtol": 0.001}, + "candy": {"atol": 0.003, "rtol": 0.003}, } zoo_models = [] -- 2.7.4