Skip to content

Commit

Permalink
fix: set default value of block_gripper for each env
Browse files Browse the repository at this point in the history
  • Loading branch information
lilkm committed Nov 24, 2024
1 parent 2770b6c commit 8cfd64c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gym_lowcostrobot/envs/pick_place_cube_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __init__(
observation_mode="image",
action_mode="joint",
reward_type="sparse",
block_gripper=True,
block_gripper=False,
distance_threshold=0.05,
cube_xy_range=0.3,
target_xy_range=0.3,
Expand Down
2 changes: 1 addition & 1 deletion gym_lowcostrobot/envs/stack_two_cubes_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __init__(
observation_mode="image",
action_mode="joint",
reward_type="sparse",
block_gripper=True,
block_gripper=False,
distance_threshold=0.05,
cube_xy_range=0.3,
n_substeps=20,
Expand Down

0 comments on commit 8cfd64c

Please sign in to comment.