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
I saw one piece of code in MultiBoxTarget.cu below:
const int num_labels = labels.size(1); CHECK_GT(num_labels, 2);
But why? I think one or two ground truth boxes are also valid for training.
The text was updated successfully, but these errors were encountered:
Just to make reuse of some temporary buffer without malloc new space.
Sorry, something went wrong.
So we have to append '-1's if there are only 1 or 2 labels?
correct
I am also training on a different dataset and face this issue. Where do I append '-1'?
No branches or pull requests
I saw one piece of code in MultiBoxTarget.cu below:
But why? I think one or two ground truth boxes are also valid for training.
The text was updated successfully, but these errors were encountered: