Skip to content

Commit

Permalink
Fix: wrong script name in search file #19
Browse files Browse the repository at this point in the history
  • Loading branch information
semitable authored Jun 10, 2023
1 parent d12860b commit 9c1d16b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastmarl/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def run(ctx, config, shuffle, seeds):
)
@click.pass_obj
def locally(combos, cpus):
configs = ["python main.py " + "-m " + " ".join([c for c in combo]) for combo in combos]
configs = ["python run.py " + "-m " + " ".join([c for c in combo]) for combo in combos]

click.confirm(
f"There are {click.style(str(len(combos)), fg='red')} combinations of configurations. Up to {cpus} will run in parallel. Continue?",
Expand Down Expand Up @@ -145,4 +145,4 @@ def single(combos, index):


if __name__ == "__main__":
cli()
cli()

0 comments on commit 9c1d16b

Please sign in to comment.