Open anshkumar opened 2 years ago
len(cfg.aspect_ratios) == 3, in each output scale, there are 3 anchors with different aspect ratios per point. This is the original Yolact configuration.
@feiyuhuahuo Thanks for the reply. I was also making Yolact minimal (but in TensorFlow). I tried to match the code as closely as possible with the original code, but still, I'm not able to match the MAP of the official implementation. With Resnet50 I'm getting 25.6 MAP. Will you be able to provide some feedback or review my code please? link: https://github.com/anshkumar/yolact
Hi, I was going through your code and found that you've used
len(cfg.aspect_ratios)
as a multiplication factor for bbox_layer, conf_layer and coef_layer:But in the official implementation they are using
self.num_priors
as a multiplication factor:why ?