Skip to content

Commit

Permalink
Add RocketLander params
Browse files Browse the repository at this point in the history
  • Loading branch information
araffin committed Jun 6, 2022
1 parent de58209 commit 75e35d0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
9 changes: 9 additions & 0 deletions hyperparams/tqc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,3 +275,12 @@ CarRacing-v0:

A1Walking-v0:
<<: *pybullet-defaults

RocketLander-v0:
n_timesteps: !!float 3e6
policy: 'MlpPolicy'
env_wrapper:
- utils.wrappers.FrameSkip:
skip: 4
- utils.wrappers.HistoryWrapper:
horizon: 2
5 changes: 5 additions & 0 deletions utils/import_envs.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
except ImportError:
panda_gym = None

try:
import rocket_lander_gym # pytype: disable=import-error
except ImportError:
rocket_lander_gym = None


# Register no vel envs
def create_no_vel_env(env_id: str):
Expand Down

0 comments on commit 75e35d0

Please sign in to comment.