zhenghao977 / FCOS-PyTorch-37.2AP

A pure torch implement of FCOS 37.2AP
162 stars 39 forks source link

What's meaning of 'prior' in nn.init.constant_(self.cls_logits.bias,-math.log((1 - prior) / prior)) in head.py #15

Closed zlq1997 closed 3 years ago

zlq1997 commented 3 years ago

Does it has same meaning with score_threshold in eval_voc.py?

zhenghao977 commented 3 years ago

No, this is just an experience for initialization of the classfication head.

zlq1997 commented 3 years ago

No, this is just an experience for initialization of the classfication head.

Thank you!