Skip to content

Commit

Permalink
fix(exps): typo of base_exp (#1153)
Browse files Browse the repository at this point in the history
fix(exps):  typo of base_exp
  • Loading branch information
futabato committed Mar 3, 2022
1 parent babb80e commit de06499
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yolox/exp/yolox_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __init__(self):
# minimum learning rate during warmup
self.warmup_lr = 0
self.min_lr_ratio = 0.05
# learning rate for one image. During traing, lr will multiply batchsize.
# learning rate for one image. During training, lr will multiply batchsize.
self.basic_lr_per_img = 0.01 / 64.0
# name of LRScheduler
self.scheduler = "yoloxwarmcos"
Expand Down Expand Up @@ -101,7 +101,7 @@ def __init__(self):
# ----------------- testing config ------------------ #
# output image size during evaluation/test
self.test_size = (640, 640)
# confidence threshold during evalulation/test,
# confidence threshold during evaluation/test,
# boxes whose scores are less than test_conf will be filtered
self.test_conf = 0.01
# nms threshold
Expand Down

0 comments on commit de06499

Please sign in to comment.