From ffb756bbc2f6233482d072abbe433f13aef1ea0f Mon Sep 17 00:00:00 2001 From: MLRichter Date: Thu, 10 Feb 2022 14:31:04 +0100 Subject: [PATCH] feat: feature maps are now also considered, when checking for unproductive layers --- tests/test_graph/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_graph/test_utils.py b/tests/test_graph/test_utils.py index 297ac45..1426ff3 100644 --- a/tests/test_graph/test_utils.py +++ b/tests/test_graph/test_utils.py @@ -382,7 +382,7 @@ def test_with_non_square_receptive_field_sizes_without_se( min_res, max_res = input_resolution_range(graph) # (75, 75), (427, 427) assert len(min_res) == 2 assert len(max_res) == 2 - assert min_res == (75, 75) + assert min_res == (96, 96) assert max_res == (427, 427) def test_with_non_square_receptive_field_sizes_wit_se(