RoboChallengeAI commited on
Commit
284a8df
·
verified ·
1 Parent(s): aea0201

Upload DATASET_CARD.md

Browse files
Files changed (1) hide show
  1. DATASET_CARD.md +290 -0
DATASET_CARD.md ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license:
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - robot
7
+ - manipulation
8
+ - navigation
9
+ - whole-body
10
+ - teleoperation
11
+ - bimanual
12
+ - mobile-manipulation
13
+ - G2
14
+ pretty_name: ""
15
+ size_categories:
16
+ - 1K<n<10K
17
+ ---
18
+
19
+ # Agibot G2 ICRA Teleoperation Dataset
20
+
21
+ This dataset contains **2,800 teleoperated episodes** collected on the [Agibot G2](https://www.agibot.com/) humanoid robot. Each episode captures a full mobile manipulation sequence—navigating to a shelf, grasping drink(s), walking to a cart, and placing item(s) into it—recorded via multi-camera observations and full-body proprioception at **30 Hz**.
22
+
23
+ ## Tasks
24
+
25
+ | Task | Episodes | Description |
26
+ |------|----------|-------------|
27
+ | `grasp_the_drink` | 1,278 | Navigate to the shelf, grasp **one** drink with one hand, carry it to the cart, and place it in. |
28
+ | `grasp_the_drink_with_both_hands` | 1,522 | Navigate to the shelf, grasp **two** drinks (one per hand), carry them to the cart, and place them in. |
29
+
30
+ ### Drink Variants
31
+
32
+ Episodes cover **16 drink categories**: ENONE Juice, Itoen Barley Tea, Schweppes Vitamin C, 7UP, Mirinda, Coconut Water, Frozen Pear Drink, JDB Herbal Tea, Pepsi, Huayang Soda, Weichuan Daily C, Aojiru, Tropicana, Minute Maid Juice, Coca Cola,ENONE Sparkling Water.
33
+
34
+ ---
35
+
36
+ ## Directory Structure
37
+
38
+ ```
39
+ {task_name}/
40
+ ├── meta.json
41
+ └── data/
42
+ └── episode_XXXXX/
43
+ ├── meta/
44
+ │ └── task_desc.json
45
+ ├── states/
46
+ │ └── aligned_joints.h5
47
+ └── videos/
48
+ ├── head_color.mp4
49
+ ├── head_depth.mp4
50
+ ├── head_stereo_left_color.mp4
51
+ ├── head_stereo_right_color.mp4
52
+ ├── hand_left_color.mp4
53
+ └── hand_right_color.mp4
54
+ ```
55
+
56
+ - **`meta.json`** — Task-level metadata (sits alongside the `data/` folder).
57
+ - **`data/episode_XXXXX/`** — One episode, zero-padded index (`episode_00000`, `episode_00001`, …).
58
+ - **`meta/task_desc.json`** — Episode-level task description, including natural-language prompts in English and Chinese, scoring rubric, and task tags.
59
+ - **`states/aligned_joints.h5`** — Per-frame aligned proprioception, action commands, and camera timestamps (HDF5).
60
+ - **`videos/`** — Six MP4 camera streams (see [Cameras](#cameras) below).
61
+
62
+ ---
63
+
64
+ ## Cameras
65
+
66
+ Each episode contains **six** video streams (fisheye cameras are excluded from this release):
67
+
68
+ | File | View | Resolution | Codec | FPS |
69
+ |------|------|------------|-------|-----|
70
+ | `head_color.mp4` | Head RGB | 640 × 400 | HEVC | 30 |
71
+ | `head_depth.mp4` | Head depth (encoded as video) | 640 × 400 | PNG | 30 |
72
+ | `head_stereo_left_color.mp4` | Head stereo left RGB | 1920 × 1536 | HEVC | 30 |
73
+ | `head_stereo_right_color.mp4` | Head stereo right RGB | 1920 × 1536 | HEVC | 30 |
74
+ | `hand_left_color.mp4` | Left wrist / hand RGB | 1280 × 1056 | HEVC | 30 |
75
+ | `hand_right_color.mp4` | Right wrist / hand RGB | 1280 × 1056 | HEVC | 30 |
76
+
77
+ ### Synchronization
78
+
79
+ For each integer frame `i` in `aligned_joints.h5`, the group `f"{i}"/timestamp/camera/<name>` stores a `uint64` array of length 1 representing the sensor timestamp. Use these timestamps to align decoded video frames to HDF5 rows. Available timestamp keys: `hand_left_color`, `hand_right_color`, `head_color`, `head_depth`, `head_stereo_left`, `head_stereo_right`.
80
+
81
+ ---
82
+
83
+ ## `aligned_joints.h5` — Proprioception & Actions
84
+
85
+ ### Top Level
86
+
87
+ The HDF5 root contains one child group per aligned sample, named by **string** keys `"0"`, `"1"`, …, `"N-1"`. **Sort by integer value** (not lexicographic order) when iterating.
88
+
89
+ ### Per-Frame Layout (`{i}/`)
90
+
91
+ | Entry | Type | Description |
92
+ |-------|------|-------------|
93
+ | `main_timestamp` | `uint64` scalar | Primary timeline stamp for the row |
94
+ | `action/` | Group | Commanded / policy-side targets |
95
+ | `state/` | Group | Measured robot state |
96
+ | `timestamp/` | Group | Per-sensor capture times (`timestamp/camera/…`) |
97
+
98
+ ### `action/`
99
+
100
+ | Path | Shape | dtype | Semantics |
101
+ |------|-------|-------|-----------|
102
+ | `action/joint/position` | `(14,)` | `float64` | Commanded arm joint positions (rad); 7 left + 7 right |
103
+ | `action/left_effector/position` | `(1,)` | `float64` | Commanded left gripper (rad) |
104
+ | `action/right_effector/position` | `(1,)` | `float64` | Commanded right gripper (rad) |
105
+ | `action/waist/position` | `(5,)` | `float64` | Commanded body/waist joint positions (rad) |
106
+ | `action/head/position` | `(3,)` | `float64` | Commanded head joint positions (rad) |
107
+ | `action/end/position` | `(2, 3)` | `float64` | Commanded end-effector positions (m); row 0=left, 1=right |
108
+ | `action/end/orientation` | `(2, 4)` | `float64` | Commanded EE orientations as quaternions `(x, y, z, w)` |
109
+ | `action/robot/velocity` | `(6,)` | `int64` | Chassis / mobile base command |
110
+
111
+ ### `state/`
112
+
113
+ | Path | Shape | dtype | Semantics |
114
+ |------|-------|-------|-----------|
115
+ | `state/joint/position` | `(14,)` | `float64` | Measured arm joints (rad) |
116
+ | `state/joint/velocity` | `(14,)` | `float64` | Arm joint rates |
117
+ | `state/joint/effort` | `(14,)` | `float64` | Arm joint torques |
118
+ | `state/joint/mode` | `(14,)` | `uint32` | Per-joint mode flags |
119
+ | `state/head/position` | `(3,)` | `float64` | Measured head joints (rad) |
120
+ | `state/head/velocity` | `(3,)` | `float64` | Head joint rates |
121
+ | `state/head/effort` | `(3,)` | `float64` | Head efforts |
122
+ | `state/head/mode` | `(3,)` | `uint32` | Head mode flags |
123
+ | `state/waist/position` | `(5,)` | `float64` | Measured waist joints (rad) |
124
+ | `state/waist/velocity` | `(5,)` | `float64` | Waist rates |
125
+ | `state/waist/effort` | `(5,)` | `float64` | Waist efforts |
126
+ | `state/waist/mode` | `(5,)` | `uint32` | Waist mode flags |
127
+ | `state/robot/position` | `(3,)` | `float64` | Measured base pose |
128
+ | `state/robot/orientation` | `(4,)` | `float64` | Base orientation (quaternion) |
129
+ | `state/end/position` | `(2, 3)` | `float64` | Measured EE positions |
130
+ | `state/end/orientation` | `(2, 4)` | `float64` | Measured EE quaternions |
131
+ | `state/end/arm_position` | `(2, 3)` | `float64` | Arm-frame positions |
132
+ | `state/end/arm_orientation` | `(2, 4)` | `float64` | Arm-frame orientations |
133
+ | `state/end/pose` | `(28,)` | `float64` | Flattened pose vector |
134
+ | `state/end/velocity` | `(24,)` | `float64` | End-state velocities |
135
+ | `state/end/wrench` | `(24,)` | `float64` | Wrench / F-T vector |
136
+ | `state/end/mode` | `(1,)` | `uint32` | EE controller mode |
137
+ | `state/end/errcode` | `(1,)` | `uint32` | Error code |
138
+ | `state/end/errmsg` | `(1,)` | `object` | Textual error (variable-length) |
139
+ | `state/left_effector/position` | `(1,)` | `float64` | Measured left gripper |
140
+ | `state/right_effector/position` | `(1,)` | `float64` | Measured right gripper |
141
+
142
+ ---
143
+
144
+ ## `task_desc.json`
145
+
146
+ Each episode's `meta/task_desc.json` contains a JSON object with:
147
+
148
+ | Key | Description |
149
+ |-----|-------------|
150
+ | `task_name` | Task identifier string (e.g. `grasp_the_drink`) |
151
+ | `prompt` | Object with a `text` template and variable slots (e.g. `{drink}`, `{drink1}`, `{drink2}`) plus a `drink` list of possible values |
152
+ | `description` | Short natural-language task summary |
153
+ | `scoring` | Rubric string describing scoring breakdown |
154
+ | `task_tags` | List of tags (`grasping`, `manipulation`, `navigation`, `whole_body`, `G2`) |
155
+
156
+ ---
157
+
158
+ ## Joint Limits (radians)
159
+
160
+ Hardware / URDF joint limits for the G2A platform:
161
+
162
+ <details>
163
+
164
+ <summary><b>Body (waist) — 5 joints</b></summary>
165
+
166
+ | Joint | Min | Max |
167
+ |-------|-----|-----|
168
+ | `idx01_body_joint1` | −1.0821 | 0.0002 |
169
+ | `idx02_body_joint2` | −0.0002 | 2.6529 |
170
+ | `idx03_body_joint3` | −1.9199 | 1.5710 |
171
+ | `idx04_body_joint4` | −0.4363 | 0.4363 |
172
+ | `idx05_body_joint5` | −3.0456 | 3.0456 |
173
+
174
+ </details>
175
+
176
+ <details>
177
+ <summary><b>Head — 3 joints</b></summary>
178
+
179
+ | Joint | Min | Max |
180
+ |-------|-----|-----|
181
+ | `idx11_head_joint1` | −1.5710 | 1.5710 |
182
+ | `idx12_head_joint2` | −0.3492 | 0.3492 |
183
+ | `idx13_head_joint3` | −0.5348 | 0.5348 |
184
+
185
+ </details>
186
+
187
+ <details>
188
+ <summary><b>Left arm — 7 joints</b></summary>
189
+
190
+ | Joint | Min | Max |
191
+ |-------|-----|-----|
192
+ | `idx21_arm_l_joint1` | −3.0718 | 3.0718 |
193
+ | `idx22_arm_l_joint2` | −2.0595 | 2.0595 |
194
+ | `idx23_arm_l_joint3` | −3.0718 | 3.0718 |
195
+ | `idx24_arm_l_joint4` | −2.4958 | 1.0123 |
196
+ | `idx25_arm_l_joint5` | −3.0718 | 3.0718 |
197
+ | `idx26_arm_l_joint6` | −1.0123 | 1.0123 |
198
+ | `idx27_arm_l_joint7` | −1.5359 | 1.5359 |
199
+
200
+ </details>
201
+
202
+ <details>
203
+ <summary><b>Right arm — 7 joints</b></summary>
204
+
205
+ | Joint | Min | Max |
206
+ |-------|-----|-----|
207
+ | `idx61_arm_r_joint1` | −3.0718 | 3.0718 |
208
+ | `idx62_arm_r_joint2` | −2.0595 | 2.0595 |
209
+ | `idx63_arm_r_joint3` | −3.0718 | 3.0718 |
210
+ | `idx64_arm_r_joint4` | −2.4958 | 1.0123 |
211
+ | `idx65_arm_r_joint5` | −3.0718 | 3.0718 |
212
+ | `idx66_arm_r_joint6` | −1.0123 | 1.0123 |
213
+ | `idx67_arm_r_joint7` | −1.5359 | 1.5359 |
214
+
215
+ </details>
216
+
217
+ <details>
218
+ <summary><b>End effectors (grippers)</b></summary>
219
+
220
+ | Joint | Min | Max |
221
+ |-------|-----|-----|
222
+ | `idx31_gripper_l_inner_joint1` | −0.91 | 0 |
223
+ | `idx71_gripper_r_inner_joint1` | −0.91 | 0 |
224
+
225
+ </details>
226
+
227
+ ---
228
+
229
+ ## Robot Platform
230
+
231
+ - **Model**: Agibot G2A — a full-size humanoid with mobile base, 5-DOF waist, 3-DOF head, dual 7-DOF arms, and parallel-jaw grippers.
232
+ - **End Effectors**: Listed per-episode in `meta_info.json` → `ee_list` (e.g. `zhiyuan_gripper_omnipicker`).
233
+ - **Collection**: Teleoperation (task mode `TDC`).
234
+ - **Frequency**: 30 Hz aligned proprioception; video streams at native sensor rate, synchronized via timestamps.
235
+
236
+ ---
237
+
238
+ ## Quick Start
239
+
240
+ ```python
241
+ import h5py
242
+ import json
243
+ from pathlib import Path
244
+
245
+ task_root = Path("grasp_the_drink")
246
+ episode_dir = task_root / "data" / "episode_00000"
247
+
248
+ # 1. Read task description
249
+ with open(episode_dir / "meta" / "task_desc.json") as f:
250
+ task_desc = json.load(f)
251
+ print(task_desc["grasp_the_drink"]["description"])
252
+
253
+ # 2. Load proprioception
254
+ with h5py.File(episode_dir / "states" / "aligned_joints.h5", "r") as f:
255
+ frame_keys = sorted(f.keys(), key=int)
256
+ print(f"Number of frames: {len(frame_keys)}")
257
+
258
+ # Read frame 0
259
+ frame = f[frame_keys[0]]
260
+ action_joints = frame["action/joint/position"][:] # (14,)
261
+ state_joints = frame["state/joint/position"][:] # (14,)
262
+ left_gripper = frame["state/left_effector/position"][:] # (1,)
263
+ print(f"Action joints shape: {action_joints.shape}")
264
+ print(f"State joints shape: {state_joints.shape}")
265
+
266
+ # 3. Video files
267
+ video_dir = episode_dir / "videos"
268
+ for mp4 in sorted(video_dir.glob("*.mp4")):
269
+ print(mp4.name)
270
+ ```
271
+
272
+ ---
273
+
274
+ ## Citation
275
+
276
+ If you use this dataset, please cite:
277
+
278
+ ```bibtex
279
+ @misc{dexmal_g2_icra_dataset,
280
+ title = {},
281
+ author = {},
282
+ year = {2026},
283
+ url = {}
284
+ }
285
+ ```
286
+
287
+ ---
288
+
289
+ ## License
290
+