tianzhi0549 / FCOS

FCOS: Fully Convolutional One-Stage Object Detection (ICCV'19)
https://arxiv.org/abs/1904.01355
Other
3.28k stars 630 forks source link

what is the final loss? #45

Closed 3AceShowHand closed 5 years ago

3AceShowHand commented 5 years ago

I am training the mode on my own dataset, and I also modified some part of the code.

Could you tell me, what is the final value of each loss of your model? About cls_loss, reg_loss, centerness_loss. This might be helpful for me to check my training procedure and related code.

Thanks.

tianzhi0549 commented 5 years ago

@JinLingChristopher The final loss (when iteration = 90000) for R-50 model are as follow, total_loss: 1.0017 loss_cls: 0.1772 loss_centerness: 0.5846 loss_reg: 0.2439.

3AceShowHand commented 5 years ago

@JinLingChristopher The final loss (when iteration = 90000) for R-50 model are as follow, total_loss: 1.0017 loss_cls: 0.1772 loss_centerness: 0.5846 loss_reg: 0.2439.

Thank you so much !