You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here, if one uses -1 to represent background, the calculation of good_insts will raises error for the shapes of these two tensors does not fit. This is because pts_instance_mask_one_hot is cut in line 531 and 'num_pts_per_inst' will have an extra element.
The solution is to move line 524 to 532, after 'if'.
The text was updated successfully, but these errors were encountered:
td3d/mmdet3d/datasets/pipelines/transforms_3d.py
Lines 524 to 535 in 33d8073
Here, if one uses -1 to represent background, the calculation of good_insts will raises error for the shapes of these two tensors does not fit. This is because pts_instance_mask_one_hot is cut in line 531 and 'num_pts_per_inst' will have an extra element.
The solution is to move line 524 to 532, after 'if'.
The text was updated successfully, but these errors were encountered: