Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Commit

Permalink
Fix size param to be a whole integer of _stride.
Browse files Browse the repository at this point in the history
  • Loading branch information
23pointsNorth committed Mar 12, 2019
1 parent 99a0a35 commit f1ad965
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/links_tests/model_tests/fpn_tests/test_faster_rcnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def __init__(self, n_fg_class, min_size, max_size):
},
{
'in_sizes': [(200, 50), (400, 100)],
'min_size': 200, 'max_size': 400,
'expected_shape': (400, 100),
'min_size': 200, 'max_size': 320,
'expected_shape': (320, 96),
},
],
))
Expand Down

0 comments on commit f1ad965

Please sign in to comment.