fix(exps): typo of base_exp (#1153)
Browse files- yolox/exp/yolox_base.py +2 -2
yolox/exp/yolox_base.py
CHANGED
@@ -73,7 +73,7 @@ class Exp(BaseExp):
|
|
73 |
# minimum learning rate during warmup
|
74 |
self.warmup_lr = 0
|
75 |
self.min_lr_ratio = 0.05
|
76 |
-
# learning rate for one image. During
|
77 |
self.basic_lr_per_img = 0.01 / 64.0
|
78 |
# name of LRScheduler
|
79 |
self.scheduler = "yoloxwarmcos"
|
@@ -101,7 +101,7 @@ class Exp(BaseExp):
|
|
101 |
# ----------------- testing config ------------------ #
|
102 |
# output image size during evaluation/test
|
103 |
self.test_size = (640, 640)
|
104 |
-
# confidence threshold during
|
105 |
# boxes whose scores are less than test_conf will be filtered
|
106 |
self.test_conf = 0.01
|
107 |
# nms threshold
|
|
|
73 |
# minimum learning rate during warmup
|
74 |
self.warmup_lr = 0
|
75 |
self.min_lr_ratio = 0.05
|
76 |
+
# learning rate for one image. During training, lr will multiply batchsize.
|
77 |
self.basic_lr_per_img = 0.01 / 64.0
|
78 |
# name of LRScheduler
|
79 |
self.scheduler = "yoloxwarmcos"
|
|
|
101 |
# ----------------- testing config ------------------ #
|
102 |
# output image size during evaluation/test
|
103 |
self.test_size = (640, 640)
|
104 |
+
# confidence threshold during evaluation/test,
|
105 |
# boxes whose scores are less than test_conf will be filtered
|
106 |
self.test_conf = 0.01
|
107 |
# nms threshold
|