Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(exp): change output_dir in base_exp and fix bug of exp mapping #18

Merged
merged 1 commit into from
Jul 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(exp): change output_dir in base_exp and fix bug of exp mapping
  • Loading branch information
FateScript committed Jul 20, 2021
commit 3091c4921c45d0dc3f19f530760ef78a23894ea1
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