Skip to content

Commit

Permalink
feat: feature maps are now also considered, when checking for unprodu…
Browse files Browse the repository at this point in the history
…ctive layers
  • Loading branch information
MLRichter committed Feb 10, 2022
1 parent b43d7c4 commit ffb756b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_graph/test_utils.py
Expand Up @@ -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(
Expand Down

0 comments on commit ffb756b

Please sign in to comment.