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
I was training pointRCNN and other point-based models using my own dataset and noticed that rcnn_cls_labels came up -1, which caused the training to terminate. Comparing to the original model I found that it seems that the -1 is not filtered when doing the binary cross entropy loss calculation. pointRCNN original model uses cls_valid_mask to filter all labels greater than 0, but in pcdet/models/roi_heads/roi_head_template.py it seems that not perform this step. I'm not sure if this is a problem.
The text was updated successfully, but these errors were encountered:
I was training pointRCNN and other point-based models using my own dataset and noticed that rcnn_cls_labels came up -1, which caused the training to terminate. Comparing to the original model I found that it seems that the -1 is not filtered when doing the binary cross entropy loss calculation. pointRCNN original model uses cls_valid_mask to filter all labels greater than 0, but in pcdet/models/roi_heads/roi_head_template.py it seems that not perform this step. I'm not sure if this is a problem.
The text was updated successfully, but these errors were encountered: