Ported MetaWorld wrapper to new mujoco binding

This commit is contained in:
Dominik Moritz Roth 2023-09-18 18:38:32 +02:00
parent 592f09789d
commit 20510d8f68

View File

@ -59,7 +59,7 @@ class BaseMetaworldMPWrapper(RawInterfaceWrapper):
@property
def current_pos(self) -> Union[float, int, np.ndarray]:
r_close = self.env.data.get_joint_qpos('r_close')
r_close = self.env.data.joint('r_close').qpos
return np.hstack([self.env.data.mocap_pos.flatten() / self.env.action_scale, r_close])
@property