Skip to content

Commit

Permalink
fix missing bind directory
Browse files Browse the repository at this point in the history
  • Loading branch information
syncall committed Oct 31, 2023
1 parent 7762255 commit cdc51b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ def main(experiments: List[str], output_dir: str):
output_dir.mkdir()
for experiment in experiments:
experiment_out_dir = output_dir / experiment
experiment_out_dir.mkdir()
(experiment_out_dir / 'client').mkdir(parents=True)
(experiment_out_dir / 'server').mkdir(parents=True)
run = 0
logging.info(f'Starting {experiment} Experiment to {experiment_out_dir}')
loop_vars_path = script_dir / 'loop_vars' / f'{experiment}.yml'
Expand Down

0 comments on commit cdc51b9

Please sign in to comment.