Skip to content

Commit

Permalink
epsilon profile 0.8 to 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PVirie committed Dec 29, 2024
1 parent da5775d commit 691a53c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/rl_hopper.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def prepare_data_tuples(states, actions, rewards, num_layers, skip_steps):
total_steps = 0
num_trials = 2000
print_steps = max(1, num_trials // 100)
epsilon = 1 - 0.75 * (course + 1) / num_courses
epsilon = 0.8 - 0.7 * (course + 1) / num_courses

next_best_targets = np.zeros((len(goals), len(goals[0][0])), dtype=np.float32)
next_best_target_diffs = np.ones((len(goals), 1), dtype=np.float32) * 1e4
Expand Down

0 comments on commit 691a53c

Please sign in to comment.