karthus198 commited on
Commit
621467e
·
verified ·
1 Parent(s): 77b48f1

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +120 -3
README.md CHANGED
@@ -1,3 +1,120 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+
6
+ tags:
7
+ - LeRobot
8
+
9
+ configs:
10
+ - config_name: default
11
+ data_files: data/*/*.parquet
12
+ ---
13
+
14
+ # Data Structure
15
+
16
+ ## Observations
17
+
18
+ ### `observation.state.ee_state` (12)
19
+ End-effector states of the robot.
20
+ - Computed via forward kinematics (FK) from the root link to the left and right end-effectors.
21
+ - Includes the contribution of the waist.
22
+ - Represented as concatenated poses of both end-effectors.
23
+
24
+ ---
25
+
26
+ ### `observation.state.hand_state` (12 or 2)
27
+ Finger states for both hands. The dimensionality depends on the hand type.
28
+
29
+ #### Inspire Hand (range: 0.0 – 1.0, open → close)
30
+ Per hand:
31
+ 1. Index finger
32
+ 2. Middle finger
33
+ 3. Ring finger
34
+ 4. Little finger
35
+ 5. Thumb (open/close)
36
+ 6. Thumb (lateral tilt)
37
+
38
+ ---
39
+
40
+ #### BrainCo Hand (range: 0.0 – 1.0, open → close)
41
+ Per hand:
42
+ 1. Thumb (open/close)
43
+ 2. Thumb (lateral tilt)
44
+ 3. Index finger
45
+ 4. Middle finger
46
+ 5. Ring finger
47
+ 6. Little finger
48
+
49
+ ---
50
+
51
+ #### Dex1 Hand (range: 5.5 – 0.0, open → close)
52
+ Per hand:
53
+ 1. Open/close
54
+
55
+ ---
56
+
57
+ ### `observation.state.robot_q_current` (36)
58
+ Current robot configuration.
59
+ - First 7 values:
60
+ - Root position: (x, y, z)
61
+ - Root orientation: quaternion (w, x, y, z)
62
+ - Remaining 29 values:
63
+ - Robot joint positions.
64
+
65
+ ---
66
+
67
+ ## Actions
68
+
69
+ ### `action.ee_action` (12)
70
+ Target end-effector states.
71
+ - Defined using forward kinematics (FK) from the root link to both end-effectors.
72
+ - Includes waist motion.
73
+
74
+ ---
75
+
76
+ ### `action.hand_cmd` (12 or 2)
77
+ Commanded finger actions. The dimensionality depends on the hand type.
78
+
79
+ #### Inspire Hand (range: 0.0 – 1.0, open → close)
80
+ Per hand:
81
+ 1. Index finger
82
+ 2. Middle finger
83
+ 3. Ring finger
84
+ 4. Little finger
85
+ 5. Thumb (open/close)
86
+ 6. Thumb (lateral tilt)
87
+
88
+ ---
89
+
90
+ #### BrainCo Hand (range: 0.0 – 1.0, open → close)
91
+ Per hand:
92
+ 1. Thumb (open/close)
93
+ 2. Thumb (lateral tilt)
94
+ 3. Index finger
95
+ 4. Middle finger
96
+ 5. Ring finger
97
+ 6. Little finger
98
+
99
+ ---
100
+
101
+ #### Dex1 Hand (range: 5.5 – 0.0, open → close)
102
+ Per hand:
103
+ 1. Open/close
104
+
105
+ ---
106
+
107
+ ### `action.robot_q_desired` (36)
108
+ Desired robot configuration.
109
+ - First 7 values:
110
+ - Target root position: (x, y, z)
111
+ - Target root orientation: quaternion (w, x, y, z)
112
+ - Remaining 29 values:
113
+ - Target joint positions.
114
+
115
+ ---
116
+
117
+
118
+ # Acknowledgements
119
+
120
+ This dataset was created using the [LeRobot](https://github.com/huggingface/lerobot) framework.