Skip to content

Commit

Permalink
Remove number of episodes from the search
Browse files Browse the repository at this point in the history
  • Loading branch information
RedTachyon committed Mar 14, 2022
1 parent 59673de commit cc80792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/optimize/optuna_crowd.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Parser(BaseParser):
def objective(trial: optuna.Trial, worker_id: int, path: str) -> float:
# Get some parameters
lr = trial.suggest_loguniform("lr", 1e-5, 1e-2)
n_episodes = trial.suggest_int("n_episodes", 1, 5)
n_episodes = 1

steps = n_episodes * 200

Expand Down

0 comments on commit cc80792

Please sign in to comment.