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
stride = inp_dim // prediction.size(2)
grid_size = inp_dim // stride
when inp_dim was not exactly divided by prediction.size(2), it may occur a error in prediction.view. Considering the grid_size equaling to the size of feature map, could we change it to "grid_size = prediction.size(2)" directly?
The text was updated successfully, but these errors were encountered:
stride = inp_dim // prediction.size(2)
grid_size = inp_dim // stride
when inp_dim was not exactly divided by prediction.size(2), it may occur a error in prediction.view. Considering the grid_size equaling to the size of feature map, could we change it to "grid_size = prediction.size(2)" directly?
The text was updated successfully, but these errors were encountered: