Browse Source

YOLOv1-r18 on VOC

yjh0410 1 year ago
parent
commit
50f67ae2b6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      yolo/config/yolov2_config.py

+ 1 - 1
yolo/config/yolov2_config.py

@@ -37,7 +37,7 @@ class Yolov2BaseConfig(object):
         self.val_conf_thresh = 0.001
         self.val_nms_thresh  = 0.7
         self.test_topk = 300
-        self.test_conf_thresh = 0.4
+        self.test_conf_thresh = 0.3
         self.test_nms_thresh  = 0.5
 
         # ---------------- Assignment config ----------------