Skip to content

Commit

Permalink
fix output arg typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dsethz committed Nov 9, 2024
1 parent c934da5 commit 13920c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/nuclai/models/evaluate_lr_rf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def main():
args = args_parse()
path_data = args.data
path_model = args.model
path_out = args.out
path_out = args.output_base_dir

# create output directory
os.makedirs(path_out, exist_ok=True)
Expand Down
2 changes: 1 addition & 1 deletion src/nuclai/models/train_lr_rf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def args_parse():
def main():
args = args_parse()
path_data = args.data
path_out = args.out
path_out = args.output_base_dir

# create output directory
os.makedirs(path_out, exist_ok=True)
Expand Down

0 comments on commit 13920c4

Please sign in to comment.