Skip to content

Commit

Permalink
fix(exp): change output_dir in base_exp and fix bug of exp mapping (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
FateScript authored Jul 20, 2021
1 parent 69278c1 commit 5fe791e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion yolox/exp/base_exp.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class BaseExp(metaclass=ABCMeta):

def __init__(self):
self.seed = None
self.output_dir = "/data/YOLOX_outputs"
self.output_dir = "./YOLOX_outputs"
self.print_interval = 100
self.eval_interval = 10

Expand Down
2 changes: 1 addition & 1 deletion yolox/exp/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_exp_by_name(exp_name):
yolox_path = os.path.dirname(os.path.dirname(yolox.__file__))
filedict = {
"yolox-s": "yolox_s.py",
"yolox-m": "yolox_l.py",
"yolox-m": "yolox_m.py",
"yolox-l": "yolox_l.py",
"yolox-x": "yolox_x.py",
"yolox-tiny": "yolox_tiny.py",
Expand Down

0 comments on commit 5fe791e

Please sign in to comment.