From 5f7ea5d77ec59958299610b946ab7e4f5d873fc3 Mon Sep 17 00:00:00 2001 From: Vasilis Vryniotis Date: Thu, 21 Oct 2021 14:24:28 +0100 Subject: [PATCH] Skip expected checks for quantized resnet50 due to flakiness. (#4686) --- test/test_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_models.py b/test/test_models.py index f55429476c9..e571d2523b6 100644 --- a/test/test_models.py +++ b/test/test_models.py @@ -223,7 +223,7 @@ def _check_input_backprop(model, inputs): # The tests for the following quantized models are flaky possibly due to inconsistent # rounding errors in different platforms. For this reason the input/output consistency # tests under test_quantized_classification_model will be skipped for the following models. -quantized_flaky_models = ("inception_v3",) +quantized_flaky_models = ("inception_v3", "resnet50") # The following contains configuration parameters for all models which are used by