Open chuong98 opened 3 years ago
I would also like to know the answer :)
Documentation
Hi, thanks for the paper: I am a bit confused about the loss implementation. Take the ATSS as RPN as an example:
- In the first stage, training the RPN with Focal Loss and IoU loss, identical to ATSS.
- In the second stage, training with the Cross Entropy with Softmax output.
My question is about the Second Stage:
- Do you still need to predict the Box Regression, since the First Stage already does a very good job?
- For the classification, do you train on the product
(P(Obj)*P(Cls))
in the second stage ? Or Only onP(Cls)
as in conventional Faster-RCNN?In other word, the training losses are identical to Faster-RCNN. But during inference, you use P(Obj)*P(Cls) as final output ?
You may find the answer in #15
📚 Documentation
Hi, thanks for the paper: I am a bit confused about the loss implementation. Take the ATSS as RPN as an example:
My question is about the Second Stage:
(P(Obj)*P(Cls))
in the second stage ? Or Only onP(Cls)
as in conventional Faster-RCNN?In other word, the training losses are identical to Faster-RCNN. But during inference, you use P(Obj)*P(Cls) as final output ?