Update README.md
Browse files
README.md
CHANGED
|
@@ -5,4 +5,65 @@ configs:
|
|
| 5 |
license: cc-by-4.0
|
| 6 |
---
|
| 7 |
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
license: cc-by-4.0
|
| 6 |
---
|
| 7 |
|
| 8 |
+
# Data Structure
|
| 9 |
+
|
| 10 |
+
## Observations
|
| 11 |
+
|
| 12 |
+
### `observation.state.ee_state` (12)
|
| 13 |
+
End-effector states of the robot.
|
| 14 |
+
- Computed via forward kinematics (FK) from the root link to the left and right end-effectors.
|
| 15 |
+
- Includes the contribution of the waist.
|
| 16 |
+
- Represented as concatenated poses of both end-effectors.
|
| 17 |
+
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
### `observation.state.hand_state` (2)
|
| 21 |
+
Finger states for both hands.
|
| 22 |
+
|
| 23 |
+
#### Dex1 Hand (range: 5.5 – 0.0, open → close)
|
| 24 |
+
Per hand:
|
| 25 |
+
1. Open/close
|
| 26 |
+
|
| 27 |
+
---
|
| 28 |
+
|
| 29 |
+
### `observation.state.robot_q_current` (36)
|
| 30 |
+
Current robot configuration.
|
| 31 |
+
- First 7 values:
|
| 32 |
+
- Root position: (x, y, z)
|
| 33 |
+
- Root orientation: quaternion (w, x, y, z)
|
| 34 |
+
- Remaining 29 values:
|
| 35 |
+
- Robot joint positions.
|
| 36 |
+
|
| 37 |
+
---
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
## Actions
|
| 41 |
+
Target end-effector states.
|
| 42 |
+
- Defined using forward kinematics (FK) from the root link to both end-effectors.
|
| 43 |
+
- Includes waist motion.
|
| 44 |
+
|
| 45 |
+
---
|
| 46 |
+
|
| 47 |
+
### `action.hand_cmd` (2)
|
| 48 |
+
Commanded finger actions.
|
| 49 |
+
|
| 50 |
+
#### Dex1 Hand (range: 5.5 – 0.0, open → close)
|
| 51 |
+
Per hand:
|
| 52 |
+
1. Open/close
|
| 53 |
+
|
| 54 |
+
---
|
| 55 |
+
|
| 56 |
+
### `action.robot_q_desired` (36)
|
| 57 |
+
Desired robot configuration.
|
| 58 |
+
- First 7 values:
|
| 59 |
+
- Target root position: (x, y, z)
|
| 60 |
+
- Target root orientation: quaternion (w, x, y, z)
|
| 61 |
+
- Remaining 29 values:
|
| 62 |
+
- Target joint positions.
|
| 63 |
+
|
| 64 |
+
---
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
# Acknowledgements
|
| 68 |
+
|
| 69 |
+
This dataset was created using the [LeRobot](https://github.com/huggingface/lerobot) framework.
|