increase the number of steps from 1000 to 2000, to mimic multiple cycles

This commit is contained in:
Erwin Coumans 2020-03-02 12:52:14 -08:00
parent 6b393dffca
commit 1f3c0057e5

View File

@ -14,15 +14,15 @@ def register(id, *args, **kvargs):
register(
id='HumanoidDeepMimicBackflipBulletEnv-v1',
entry_point='pybullet_envs.deep_mimic.gym_env:HumanoidDeepMimicBackflipBulletEnv',
max_episode_steps=1000,
reward_threshold=1000.0,
max_episode_steps=2000,
reward_threshold=2000.0,
)
register(
id='HumanoidDeepMimicWalkBulletEnv-v1',
entry_point='pybullet_envs.deep_mimic.gym_env:HumanoidDeepMimicWalkBulletEnv',
max_episode_steps=1000,
reward_threshold=1000.0,
max_episode_steps=2000,
reward_threshold=2000.0,
)
register(