Skip to content

Commit

Permalink
continue course
Browse files Browse the repository at this point in the history
  • Loading branch information
PVirie committed Jan 16, 2025
1 parent 1c706fb commit 548242e
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 @@ -162,7 +162,7 @@ def setup():
def train(context, parameter_path):

course = context.course
num_courses = 2
num_courses = 4

if course >= num_courses:
logging.info("Experiment already completed")
Expand Down Expand Up @@ -283,7 +283,7 @@ def prepare_data_tuples(states, actions, rewards, num_layers, skip_steps):
random.seed(random_seed)

total_steps = 0
num_trials = 4000
num_trials = 2000
print_steps = max(1, num_trials // 100)
epsilon = 0.8 - 0.5 * (course + 1) / num_courses

Expand Down

0 comments on commit 548242e

Please sign in to comment.