Detectron2 loss_box_reg = 0 and prediction returning empty tensor[] #3843
Unanswered
deeplearningnoobie
asked this question in
Q&A
Replies: 2 comments
-
Maybe the custom dataset is not correctly registered, resulting in no ground-truth bounding box annotation fed to the detector. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@sukjunhwang can you help me with similar problem but loss_reg_loss is decreasing in my case posted in the discussion above. help me |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
While Training a custom dataset on COCO-Detection/faster_rcnn_R_50_FPN_3x.yaml I get the following output:
iter: 219 total_loss: 0.04751 loss_cls: 0.000811 loss_box_reg: 0 loss_rpn_cls: 0.03579 loss_rpn_loc: 0.007368 time: 0.9141 data_time: 0.0076 lr: 0.00024886 max_mem: 1832M.
The loss_box_reg: 0 and while predicting the bbox:
tensor([], device='cuda:0', dtype=torch.int64) Boxes(tensor([], device='cuda:0', size=(0, 4).
Any suggestions on the problem?
Beta Was this translation helpful? Give feedback.
All reactions