Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
akiFQC committed Nov 21, 2024
1 parent c357ebd commit c10189f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/jmteb/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,15 @@ def main(

if len(args.evaluators) == 0:
raise ValueError("No evaluator is selected. Please check the config file or the command line arguments.")

# save config as yaml
parser.save(
args, Path(args.save_dir) / "jmteb_config.yaml", format="yaml", overwrite=True, multifile=False, skip_check=True
args,
Path(args.save_dir) / "jmteb_config.yaml",
format="yaml",
overwrite=True,
multifile=False,
skip_check=True,
)

args = parser.instantiate_classes(args)
Expand Down

0 comments on commit c10189f

Please sign in to comment.