Skip to content

Commit

Permalink
format 2
Browse files Browse the repository at this point in the history
  • Loading branch information
albertbou92 committed Apr 23, 2024
1 parent 8b05196 commit 3495073
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/ppo/ppo.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ def main(cfg: "DictConfig"):
)
run_ppo(cfg, task)
elif cfg.get("custom_task", None):
task = Task(custom_scoring_functions[cfg.custom_task], budget=cfg.total_smiles)
task = Task(
custom_scoring_functions[cfg.custom_task], budget=cfg.total_smiles
)
run_ppo(cfg, task)
else:
raise ValueError("No scoring function specified.")
Expand Down

0 comments on commit 3495073

Please sign in to comment.