Skip to content

Commit

Permalink
reduce session length
Browse files Browse the repository at this point in the history
  • Loading branch information
PVirie committed Jan 3, 2025
1 parent ed2747c commit e604095
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 @@ -258,7 +258,7 @@ def prepare_data_tuples(states, actions, rewards, num_layers, skip_steps):
actions = []
rewards = []

for j in range(1000):
for j in range(200):
if random.random() <= epsilon or course == 0:
selected_action = env.action_space.sample()
# quantize to -1 0 1
Expand Down

0 comments on commit e604095

Please sign in to comment.