Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion isaaclab.sh
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ setup_conda_env() {
'export ISAACLAB_PATH='${ISAACLAB_PATH}'' \
'alias isaaclab='${ISAACLAB_PATH}'/isaaclab.sh' \
'' \
'# show icon if not runninng headless' \
'# show icon if not running headless' \
'export RESOURCE_NAME="IsaacSim"' \
'' > ${CONDA_PREFIX}/etc/conda/activate.d/setenv.sh

Expand Down
2 changes: 1 addition & 1 deletion scripts/environments/state_machine/open_cabinet_sm.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def __init__(self, dt: float, num_envs: int, device: torch.device | str = "cpu",
self.des_ee_pose = torch.zeros((self.num_envs, 7), device=self.device)
self.des_gripper_state = torch.full((self.num_envs,), 0.0, device=self.device)

# approach infront of the handle
# approach in front of the handle
self.handle_approach_offset = torch.zeros((self.num_envs, 7), device=self.device)
self.handle_approach_offset[:, 0] = -0.1
self.handle_approach_offset[:, -1] = 1.0 # warp expects quaternion as (x, y, z, w)
Expand Down
2 changes: 1 addition & 1 deletion scripts/reinforcement_learning/ray/tuner.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def setup(self, config: dict) -> None:
self.experiment = None

def reset_config(self, new_config: dict):
"""Allow environments to be re-used by fetching a new invocation command"""
"""Allow environments to be reused by fetching a new invocation command"""
self.setup(new_config)
return True

Expand Down