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
In the implementation of the SSDLoss, the cls_loss of the negative anchors were set to 0,
but later you sum cls[pos|neg]. This is the same as cls[pos], since the loss of all the negative anchors were neglected. So maybe cls_loss[cls_targets<0] = 0 is redundant? The negative mining has already generated a mask that only takes a part of negative anchors into account. Or did I understand wrongly?
The text was updated successfully, but these errors were encountered:
In the implementation of the
SSDLoss
, thecls_loss
of the negative anchors were set to 0,but later you sum
cls[pos|neg]
. This is the same ascls[pos]
, since the loss of all the negative anchors were neglected. So maybecls_loss[cls_targets<0] = 0
is redundant? The negative mining has already generated a mask that only takes a part of negative anchors into account. Or did I understand wrongly?The text was updated successfully, but these errors were encountered: