We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
_expand_onehot_labels
Some code in function _expand_onehot_labels of https://github.com/open-mmlab/mmdetection/blob/master/mmdet/models/losses/ghm_loss.py is
if inds.numel() > 0: bin_labels[inds, labels[inds]] = 1
but in you rep function, it is:
if inds.numel() > 0: bin_labels[inds, labels[inds] - 1] = 1
Is there something wrong?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some code in function
_expand_onehot_labels
of https://github.com/open-mmlab/mmdetection/blob/master/mmdet/models/losses/ghm_loss.py isbut in you rep function, it is:
Is there something wrong?
The text was updated successfully, but these errors were encountered: