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
When multi-scale training is applied, the output feature map size also changes, so shouldn't the size of the prior anchor be modified at the same time? But why does anchors remain the same in the code?
The text was updated successfully, but these errors were encountered:
it is because of view operation.code is
global_average_pool_reshaped =
global_average_pool.permute(0, 2, 3, 1).contiguous().view(bsize,
-1, cfg.num_anchors, cfg.num_classes + 5)
in darknet.py
When multi-scale training is applied, the output feature map size also changes, so shouldn't the size of the prior anchor be modified at the same time? But why does anchors remain the same in the code?
The text was updated successfully, but these errors were encountered: