Skip to content

Commit

Permalink
fix(exp): change num_workers value
Browse files Browse the repository at this point in the history
  • Loading branch information
FateScript committed Jul 19, 2021
1 parent 929754a commit 8506f7e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion yolox/exp/yolox_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ def __init__(self):
self.width = 1.00

# ---------------- dataloader config ---------------- #
self.data_num_workers = 6
# set worker to 4 for shorter dataloader init time
self.data_num_workers = 4
self.input_size = (640, 640)
self.random_size = (14, 26)
self.train_ann = "instances_train2017.json"
Expand Down

0 comments on commit 8506f7e

Please sign in to comment.