Stinky-Tofu / Stronger-yolo

🔥Improve yolo with latest paper
MIT License
3 stars 0 forks source link

关于标签的疑问 #59

Open StrongBirds opened 5 years ago

StrongBirds commented 5 years ago
   首先非常感谢你的代码,另外有一些疑问    
       if bbox_scale <= 30:
            match_branch = 0
        elif (30 < bbox_scale) and (bbox_scale <= 90):
            match_branch = 1
        else:
            match_branch = 2

请问这里小目标的面积开方的尺寸30 ,中目标30-90, 大目标>90,请问这些数字你是怎么界定的?

Stinky-Tofu commented 5 years ago

@StrongBirds 这个是人为设定的,没怎么调

StrongBirds commented 5 years ago

如果是人为设定的,按照道理说通过K-means生成的anchors的会不会好点呢?看到你的结论是没有变化

Stinky-Tofu commented 5 years ago

@StrongBirds 我的目的就是为了去掉anchor,这只是初步的anchor-free设计,所以采用了人工设定。在后续的研究中,我已经不需要这几个参数了。