Closed Johnqczhang closed 3 years ago
BTW, I have two other questions.
kaiming_uniform
method, whereas other newly added conv layers are initialized, as described in the paper, using the same way as the RetinaNet.refine
module in the mask branch, cause I don't find anything about this in the paper. Thanks!@Johnqczhang The initialization method here is not important. It does not affect the performance too much.
@tianzhi0549 What about the refine
module? I see that the multi-level FPN features are fed into the refine
module and the corresponding outputs are added together, which are then fed into the mask branch. Is the refine
module necessary?
@tianzhi0549 Yes, refine
can improve the performance considerably.
https://github.com/aim-uofa/AdelaiDet/blob/a559ab542cfde73337b0c91f72bd51de208a74ae/adet/modeling/condinst/mask_branch.py#L34-L51
Hi @tianzhi0549, I wonder whether the weights initialization for the last layer (Line 48-50) of the mask branch has an impact on the performance of CondInst.