update embodiment tag
Browse files
README.md
CHANGED
|
@@ -95,4 +95,24 @@ class BridgeDataConfig(FractalDataConfig):
|
|
| 95 |
action_keys = ["action.x", "action.y", "action.z", "action.roll", "action.pitch", "action.yaw", "action.gripper"]
|
| 96 |
language_keys = ["annotation.human.action.task_description"]
|
| 97 |
|
| 98 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 95 |
action_keys = ["action.x", "action.y", "action.z", "action.roll", "action.pitch", "action.yaw", "action.gripper"]
|
| 96 |
language_keys = ["annotation.human.action.task_description"]
|
| 97 |
|
| 98 |
+
```
|
| 99 |
+
|
| 100 |
+
Extra embodiment tag to reproduce the results.
|
| 101 |
+
|
| 102 |
+
```python
|
| 103 |
+
class EmbodimentTag(Enum):
|
| 104 |
+
OXE = 'oxe'
|
| 105 |
+
|
| 106 |
+
# Embodiment tag string: to projector index in the Action Expert Module
|
| 107 |
+
EMBODIMENT_TAG_MAPPING = {
|
| 108 |
+
EmbodimentTag.OXE.value: 7,
|
| 109 |
+
}
|
| 110 |
+
```
|
| 111 |
+
|
| 112 |
+
Thanks to @youliangtan, who reevaluated my results.
|
| 113 |
+
|
| 114 |
+
https://huggingface.co/ShuaiYang03/GR00T-N1.5-Lerobot-SimplerEnv-BridgeV2/discussions/1
|
| 115 |
+
|
| 116 |
+
https://github.com/NVIDIA/Isaac-GR00T : with the commit hash aa6441feb4f08233d55cbfd2082753cdc01fa676
|
| 117 |
+
|
| 118 |
+
With the modified SimplerEnv : https://github.com/youliangtan/SimplerEnv
|