Skip to content

Commit

Permalink
tweaked syllabus tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
kywch committed Apr 19, 2024
1 parent 4550272 commit 7f7c928
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions syllabus_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ def create_sequential_curriculum(task_space):
stopping = []

stage1 = list(range(10))
stopping.append("episode_return>=0.8&episodes>=5000")
stopping.append("episode_return>=0.75&episodes>=5000")

stage2 = list(range(10, 20))
stopping.append("episode_return>=0.8&episodes>=5000")
stopping.append("episode_return>=0.75&episodes>=5000")

stage3 = list(range(20, 30))
stopping.append("episode_return>=0.8&episodes>=5000")
stopping.append("episode_return>=0.75&episodes>=5000")

stage4 = list(range(30, 40))
stopping.append("episode_return>=0.8&episodes>=5000")
stopping.append("episode_return>=0.75&episodes>=5000")

stage5 = list(range(40, 50))

Expand Down

0 comments on commit 7f7c928

Please sign in to comment.