Skip to content

Commit

Permalink
fixed wrong indent
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasWeise committed Nov 24, 2023
1 parent 414b979 commit 6cb7c4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moptipyapps/dynamic_control/experiment_surrogate.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,9 @@ def run(base_dir: str, n_runs: int = 64) -> None:
if not (0 < warmup_fes < MAX_FES):
continue
training_fes: int = max(1, int(0.5 + (total_training_fes / (
MAX_FES - warmup_fes))))
MAX_FES - warmup_fes))))
on_model_fes: int = max(1, int(0.5 + (total_on_model_fes / (
MAX_FES - warmup_fes))))
MAX_FES - warmup_fes))))

setups.append(cast(
Callable[[Any], Execution],
Expand Down

0 comments on commit 6cb7c4c

Please sign in to comment.