Open mc171819 opened 2 years ago
hi, when I run 'from spconv.utils import rbbox_iou, rbbox_iou_loss' in box_np_ops.py, it occurs an error: ImportError: cannot import name 'rbbox_iou_loss'. However, when I ask the author about rrbox_iou_loss, he said there isn't any rbbox_iou_loss in spconv. So how should I modify the code?
I had same error when I run SECOND repo. The problem may occur in spconv2.x. I solve this problem after installing spconv1.x
hi, when I run 'from spconv.utils import rbbox_iou, rbbox_iou_loss' in box_np_ops.py, it occurs an error: ImportError: cannot import name 'rbbox_iou_loss'. However, when I ask the author about rrbox_iou_loss, he said there isn't any rbbox_iou_loss in spconv. So how should I modify the code?
I had same error when I run SECOND repo. The problem may occur in spconv2.x. I solve this problem after installing spconv1.x
rbbox_iou is truly can be import in spconv1.x, however i still cannot import rbbox_iou_loss in any version of spconv. How did you resolve this?
hi
I just delete 'rbbox_iou_loss'. Specifically, i change the from spconv.utils import rbbox_iou, rbbox_iou_loss
to from spconv.utils import rbbox_iou
in box_np_ops.py. I also comment the "riou_cc_loss" function. then it works.
Best wish to you!
By the way, my spconv version is v1.0(commit 8da6f96).
I follow this page http://nicethemes.cn/news/txtlist_i198814v.html
,then it works
this help me: https://github.com/idenovix/bu_spconv by the way, when "python setup.py bdist_wheel", there will be a error, it is because the pytorch version, you can solve it follow this: https://blog.csdn.net/baidu_34172099/article/details/109741821
hi, when I run 'from spconv.utils import rbbox_iou, rbbox_iou_loss' in box_np_ops.py, it occurs an error: ImportError: cannot import name 'rbbox_iou_loss'. However, when I ask the author about rrbox_iou_loss, he said there isn't any rbbox_iou_loss in spconv. So how should I modify the code?