You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 24, 2020. It is now read-only.
we know shape(offset_mask)[1] = deformable_groups * offset_channels with deformable_groups = 1 and offset_channels = 27. From definition, offset_channels = 27 is fixed, but deformable_groups is a parameter to be passed in with default value 1. If a value other than 1 is passed in to deformable_groups, then shape(offset_mask)[1] = deformable_groups * offset_channels > 27 and values in offset_mask[:, 18:-9, :, :] is discarded in the code segment above. Same problem in class Bottleneck.