From 4bbb4a2a14c9779bf65370e241f6e43a13f654c0 Mon Sep 17 00:00:00 2001 From: Cao Yuhang <yhcao6@gmail.com> Date: Sat, 18 May 2019 01:52:22 +0800 Subject: [PATCH] fix score_cofficient to score_factors (#663) --- mmdet/models/anchor_heads/fcos_head.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmdet/models/anchor_heads/fcos_head.py b/mmdet/models/anchor_heads/fcos_head.py index 979177c..f16eb3c 100644 --- a/mmdet/models/anchor_heads/fcos_head.py +++ b/mmdet/models/anchor_heads/fcos_head.py @@ -248,7 +248,7 @@ class FCOSHead(nn.Module): cfg.score_thr, cfg.nms, cfg.max_per_img, - score_cofficient=mlvl_centerness) + score_factors=mlvl_centerness) return det_bboxes, det_labels def get_points(self, featmap_sizes, dtype, device): -- GitLab