MCPcopy Create free account
hub / github.com/TencentARC/Moto / ProprioEncoding

Class ProprioEncoding

data_preprocessing/oxe_dataset_configs.py:18–26  ·  view source on GitHub ↗

Defines supported proprio encoding schemes for different datasets.

Source from the content-addressed store, hash-verified

16
17
18class ProprioEncoding(IntEnum):
19 """Defines supported proprio encoding schemes for different datasets."""
20
21 NONE = -1 # no proprio provided
22 POS_EULER = 1 # EEF XYZ + roll-pitch-yaw + gripper open/close
23 POS_QUAT = 2 # EEF XYZ + quaternion + gripper open/close
24 JOINT = 3 # joint angles + gripper open/close
25 JOINT_BIMANUAL = 4 # 2 x [6 x joint angles + gripper open/close]
26 POS_NAV = 5 # XY + yaw
27
28
29class ActionEncoding(IntEnum):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected