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

Class ActionEncoding

data_preprocessing/oxe_dataset_configs.py:29–38  ·  view source on GitHub ↗

Defines supported action encoding schemes for different datasets.

Source from the content-addressed store, hash-verified

27
28
29class ActionEncoding(IntEnum):
30 """Defines supported action encoding schemes for different datasets."""
31
32 EEF_POS = 1 # EEF delta XYZ + roll-pitch-yaw + gripper open/close
33 JOINT_POS = 2 # 7 x joint delta position + gripper open/close
34 JOINT_POS_BIMANUAL = 3 # 2 x [6 x joint pos + gripper]
35 NAV_2D = 4 # [delta_x, delta_y] waypoint
36 JOINT_POS_BIMANUAL_NAV = (
37 5 # 2 x [6 x joint pos + gripper] + linear base vel + angular base vel
38 )
39
40
41OXE_DATASET_CONFIGS = {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected