Skip to content

Commit

Permalink
Fix fragment length for classic control environments.
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestum committed Feb 28, 2024
1 parent 57018d5 commit b7ca230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tuning/hp_search_spaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def __call__(
"active_selection_oversampling": trial.suggest_int("active_selection_oversampling", 1, 11),
"comparison_queue_size": trial.suggest_int("comparison_queue_size", 1, 1001), # upper bound determined by total_comparisons=1000
"exploration_frac": trial.suggest_float("exploration_frac", 0.0, 0.5),
"fragment_length": trial.suggest_int("fragment_length", 1, 1001), # trajectories are 1000 steps long
"fragment_length": trial.suggest_int("fragment_length", 1, 201), # trajectories are 1000 steps long
"gatherer_kwargs": {
"temperature": trial.suggest_float("gatherer_temperature", 0.0, 2.0),
"discount_factor": trial.suggest_float("gatherer_discount_factor", 0.95, 1.0),
Expand Down

0 comments on commit b7ca230

Please sign in to comment.