Commit b337605f authored by Jan Kiene's avatar Jan Kiene
Browse files

fix base path in config creation script

parent 36b2ae50
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ def create_experiment_setup(experiment, lab) -> list[Path]:
    experiments = EXPERIMENTS_P800 + EXPERIMENTS_BS1534
    seed = 101 + experiments.index(experiment) * 4 + LAB_IDS.index(lab)

    base_path = Path(HERE.name).joinpath(f"experiments/selection/{experiment}")
    base_path = HERE.joinpath(f"experiments/selection/{experiment}")

    cfgs = list()
    for cat in categories: