Skip to content

Commit

Permalink
Fix Isaac Lab task names (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
Toni-SM authored Jun 24, 2024
1 parent c3a23a1 commit cd5906d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/examples/isaaclab/jax_lift_franka_ppo.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def __call__(self, inputs, role):


# load and wrap the Isaac Lab environment
env = load_isaaclab_env(task_name="Isaac-Lift-Franka-v0")
env = load_isaaclab_env(task_name="Isaac-Lift-Cube-Franka-v0")
env = wrap_env(env)

device = env.device
Expand Down
2 changes: 1 addition & 1 deletion docs/source/examples/isaaclab/jax_velocity_anymal_c_ppo.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def __call__(self, inputs, role):


# load and wrap the Isaac Lab environment
env = load_isaaclab_env(task_name="Isaac-Velocity-Anymal-C-v0")
env = load_isaaclab_env(task_name="Isaac-Velocity-Flat-Anymal-C-v0")
env = wrap_env(env)

device = env.device
Expand Down
2 changes: 1 addition & 1 deletion docs/source/examples/isaaclab/torch_lift_franka_ppo.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def compute(self, inputs, role):


# load and wrap the Isaac Lab environment
env = load_isaaclab_env(task_name="Isaac-Lift-Franka-v0")
env = load_isaaclab_env(task_name="Isaac-Lift-Cube-Franka-v0")
env = wrap_env(env)

device = env.device
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def compute(self, inputs, role):


# load and wrap the Isaac Lab environment
env = load_isaaclab_env(task_name="Isaac-Velocity-Anymal-C-v0")
env = load_isaaclab_env(task_name="Isaac-Velocity-Flat-Anymal-C-v0")
env = wrap_env(env)

device = env.device
Expand Down

0 comments on commit cd5906d

Please sign in to comment.