From 1f4e3a46609df5550789ea681820cd77b186b515 Mon Sep 17 00:00:00 2001 From: Vasilis Vryniotis Date: Mon, 9 Nov 2020 15:28:57 +0000 Subject: [PATCH] Change the `SUM_OF_PRETRAINED_RESNET18_PARAMS` decimal values to resolve broken tests. (#2978) --- test/test_hub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_hub.py b/test/test_hub.py index 29ae90014d1..2057d01dcc1 100644 --- a/test/test_hub.py +++ b/test/test_hub.py @@ -13,7 +13,7 @@ def sum_of_model_parameters(model): return s -SUM_OF_PRETRAINED_RESNET18_PARAMS = -12703.9931640625 +SUM_OF_PRETRAINED_RESNET18_PARAMS = -12703.8974609375 @unittest.skipIf('torchvision' in sys.modules,