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
There is no option in the training code to change the stride variable. Apparently, stride depends on pyramid_levels value. But this value is
hardcoded in the line self.anchor_points = AnchorPoints(pyramid_levels=[3,], row=row, line=line)
and in case it is changed, it gives this runtime error; RuntimeError: The size of tensor a (1024) must match the size of tensor b (256) at non-singleton dimension
at output_coord = regression + anchor_points
The text was updated successfully, but these errors were encountered:
There is no option in the training code to change the stride variable. Apparently, stride depends on pyramid_levels value. But this value is
hardcoded in the line
self.anchor_points = AnchorPoints(pyramid_levels=[3,], row=row, line=line)
and in case it is changed, it gives this runtime error;
RuntimeError: The size of tensor a (1024) must match the size of tensor b (256) at non-singleton dimension
at
output_coord = regression + anchor_points
The text was updated successfully, but these errors were encountered: