Skip to content

Commit

Permalink
fix plot script (#2346)
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerroth authored Feb 2, 2024
1 parent da9562a commit 78e493b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def main():
for config, exp in experiments.items():
config_name = config.split(" ")[0]
alpha = exp.get("alpha", None)
if alpha:
if alpha is not None:
config_name = config_name + f"*alpha{alpha}"
else:
raise ValueError(f"Expected an alpha value to be provided but got alpha={alpha}")
Expand Down

0 comments on commit 78e493b

Please sign in to comment.