compert/sweep.py [19:25]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    commands = []
    for seed in range(args["sweep_seeds"]):
        these_args = dict(args)
        these_args["seed"] = seed
        commands.append(these_args)

    executor.map_array(train_compert, commands)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



compert/sweep_icb.py [21:27]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    commands = []
    for seed in range(args["sweep_seeds"]):
        these_args = dict(args)
        these_args["seed"] = seed
        commands.append(these_args)

    executor.map_array(train_compert, commands)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



