Tencent / ObjectDetection-OneStageDet

单阶段通用目标检测器

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

I find the structure is not same as yolov3. Is that a trick?

LDoubleZhi opened this issue · comments

When I debug line 34 self.backbone = backbone.Darknet53() in models/_yolov3.py. I find stage_cfg = {'stage_2': 2, 'stage_3': 3, 'stage_4': 9, 'stage_5': 9, 'stage_6': 5} the number of res blocks is not equal to (1, 2, 8, 8, 4) which is used by darknet53 offically.