Instructions to use lerobot/being_h05_base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- LeRobot
How to use lerobot/being_h05_base with LeRobot:
- Notebooks
- Google Colab
- Kaggle
File size: 3,155 Bytes
86d1fcc fd60fdd 86d1fcc fd60fdd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | {
"name": "policy_preprocessor",
"steps": [
{
"registry_name": "to_batch_processor",
"config": {}
},
{
"registry_name": "normalizer_processor",
"config": {
"eps": 1e-08,
"features": {
"observation.images.robot0_agentview_left": {
"type": "VISUAL",
"shape": [
3,
224,
224
]
},
"observation.images.robot0_agentview_right": {
"type": "VISUAL",
"shape": [
3,
224,
224
]
},
"observation.images.robot0_eye_in_hand": {
"type": "VISUAL",
"shape": [
3,
224,
224
]
},
"observation.state.eef_position": {
"type": "STATE",
"shape": [
3
]
},
"observation.state.eef_rotation": {
"type": "STATE",
"shape": [
3
]
},
"observation.state.gripper_qpos": {
"type": "STATE",
"shape": [
2
]
},
"observation.state.base_position": {
"type": "STATE",
"shape": [
3
]
},
"observation.state.base_rotation": {
"type": "STATE",
"shape": [
3
]
},
"action": {
"type": "ACTION",
"shape": [
12
]
}
},
"norm_map": {
"VISUAL": "IDENTITY",
"STATE": "IDENTITY",
"ACTION": "IDENTITY"
}
}
},
{
"registry_name": "being_h05_semantic_pack",
"config": {
"image_keys": [
"observation.images.robot0_agentview_left",
"observation.images.robot0_agentview_right",
"observation.images.robot0_eye_in_hand"
],
"prompt_template": "According to the instruction '{task_description}', what's the micro-step actions in the next {k} steps?",
"chunk_size": 16,
"state_slots": {
"eef_position": [
0,
3
],
"eef_rotation": [
3,
6
],
"gripper_qpos": [
44,
46
],
"base_position": [
70,
73
],
"base_rotation": [
73,
76
]
},
"action_slots": {
"eef_position": [
0,
3
],
"eef_rotation": [
3,
6
],
"gripper_position": [
18,
19
],
"base_motion": [
70,
74
],
"control_mode": [
74,
75
]
}
}
},
{
"registry_name": "device_processor",
"config": {
"device": "cuda",
"float_dtype": null
}
}
]
} |