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 function get_top_confidences in matcher.py, you choose the top_k confidences bounding boxes including background, I think it is not a good strategy, it may lead to train negative examples that have already been trained. I think the top_k foreground bounding boxes should be chosen, am I right?
The text was updated successfully, but these errors were encountered:
You are right.
The condition "np.argmax(predLabels[i]) != classNum" has ruled out the possibility of choosing background as negative examples, but if the top k examples are almost background, the number of negative examples will be reduced greatly.
In the function get_top_confidences in matcher.py, you choose the top_k confidences bounding boxes including background, I think it is not a good strategy, it may lead to train negative examples that have already been trained. I think the top_k foreground bounding boxes should be chosen, am I right?
The text was updated successfully, but these errors were encountered: