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
Hi author, Thank you for your nice work. I encountered a case where I get bbox_iou of 0.7304, but bbox_loss: -inf.
After that it's: CUDA kernel failed : invalid configuration argument.
Should I modify giou_loss = 1. - iou3d + (v_c - u3d) / v_c as giou_loss = 1. - iou3d + (v_c - u3d) / (v_c + 1e-14)?
giou_loss = 1. - iou3d + (v_c - u3d) / v_c
giou_loss = 1. - iou3d + (v_c - u3d) / (v_c + 1e-14)
Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi author,
Thank you for your nice work.
I encountered a case where I get bbox_iou of 0.7304, but bbox_loss: -inf.
After that it's:
CUDA kernel failed : invalid configuration argument.
Should I modify
giou_loss = 1. - iou3d + (v_c - u3d) / v_c
as
giou_loss = 1. - iou3d + (v_c - u3d) / (v_c + 1e-14)
?Thank you!
The text was updated successfully, but these errors were encountered: