er-muyue / DeFRCN

MIT License
182 stars 43 forks source link

puzzled about learning rate of RPN #16

Closed x2ss closed 2 years ago

x2ss commented 2 years ago

Dear Authors,

Thanks for your great work. I have puzzled the learning rate of RPN.

As stated in the paper, "Moreover, the λ in GDL of RPN is set to 0 for stopping gradient", does it mean that the RPN is never learnt? If the RPN is never learnt, which way is used to initialize it ?

Best!

er-muyue commented 2 years ago

'lambda_rpn = 0':It is not that RPN does not learn but the learning of backbone is not affected by RPN. Note that RPN is updated normally according to the gradient flow from RPN-head.

x2ss commented 2 years ago

Understood! Thanks for your answer!