-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
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
关于Complete-IoU Loss and Cluster-NMS for Improving Object Detection and Instance Segmentation #19
Comments
|
您好,关于源代码实现计算ciou的小疑问,bboxes1 = torch.sigmoid(bboxes1),bboxes2 = torch.sigmoid(bboxes2),计算后面高宽的时候w1 = torch.exp(bboxes1[:, 2]),不是很明白为什么这里选择先对box激活。参考其他的一些iou实现源码都没有激活这个操作,反而是直接对box计算 |
作者您好,您的这篇论文中CIoU和Cluster-NMS的组合可以用在YOLOv5中吗?我在YOLOv5中该如何将torchvision原始的NMS替换为Cluster-NMS呢?谢谢
The text was updated successfully, but these errors were encountered: