Skip to content

Commit

Permalink
longer exp
Browse files Browse the repository at this point in the history
  • Loading branch information
PVirie committed Dec 26, 2024
1 parent 8aa9b59 commit 3f99896
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/rl_hopper.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def prepare_data_tuples(states, actions, rewards, num_layers, skip_steps):
for course in range(num_courses):
logging.info(f"Course {course}")
total_steps = 0
num_trials = 2000
num_trials = 20000
print_steps = max(1, num_trials // 100)
epsilon = 1 - 0.5 * (course + 1) / num_courses

Expand Down Expand Up @@ -287,7 +287,7 @@ def prepare_data_tuples(states, actions, rewards, num_layers, skip_steps):
for trainer in trainers:
trainer.prepare_batch(max_mini_batch_size=16, max_learning_sequence=32)

loop_train(trainers, 20000)
loop_train(trainers, 100000)

for trainer in trainers:
trainer.clear_batch()
Expand Down

0 comments on commit 3f99896

Please sign in to comment.