File size: 1,410 Bytes
4e87bb3
94cc9d6
2db21b0
 
 
4e87bb3
 
4b5961c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
configs:
- config_name: default
  data_files: data/*/*.parquet
license: cc-by-4.0
---

# Data Structure

## Observations

### `observation.state.ee_state` (12)
End-effector states of the robot.
- Computed via forward kinematics (FK) from the root link to the left and right end-effectors.
- Includes the contribution of the waist.
- Represented as concatenated poses of both end-effectors.

---

### `observation.state.hand_state` (2)
Finger states for both hands.

#### Dex1 Hand (range: 5.5 – 0.0, open → close)
Per hand:
1. Open/close  

---

### `observation.state.robot_q_current` (36)
Current robot configuration.
- First 7 values:
  - Root position: (x, y, z)
  - Root orientation: quaternion (w, x, y, z)
- Remaining 29 values:
  - Robot joint positions.

---


## Actions
Target end-effector states.
- Defined using forward kinematics (FK) from the root link to both end-effectors.
- Includes waist motion.

---

### `action.hand_cmd` (2)
Commanded finger actions.

#### Dex1 Hand (range: 5.5 – 0.0, open → close)
Per hand:
1. Open/close  

---

### `action.robot_q_desired` (36)
Desired robot configuration.
- First 7 values:
  - Target root position: (x, y, z)
  - Target root orientation: quaternion (w, x, y, z)
- Remaining 29 values:
  - Target joint positions.

---


# Acknowledgements

This dataset was created using the [LeRobot](https://github.com/huggingface/lerobot) framework.