Skip to content

Commit

Permalink
Add the joint pos obs back
Browse files Browse the repository at this point in the history
  • Loading branch information
Yu Fang committed Jan 24, 2025
1 parent 53ed0ff commit c7fe6df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robosuite/robots/robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def joint_vel(obs_cache):
sensors = [joint_pos, joint_pos_cos, joint_pos_sin, joint_vel]
names = ["joint_pos", "joint_pos_cos", "joint_pos_sin", "joint_vel"]
# We don't want to include the direct joint pos sensor outputs
actives = [False, True, True, True]
actives = [True, True, True, True]

for arm in self.arms:
arm_sensors, arm_sensor_names = self._create_arm_sensors(arm, modality=modality)
Expand Down

0 comments on commit c7fe6df

Please sign in to comment.