jae0311 commited on
Commit
645e64f
·
verified ·
1 Parent(s): 1b8eac6

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - manipulation
8
+ - pick-and-place
9
+ - cafe-serving
10
+ - omx
11
+ size_categories:
12
+ - 100K<n<1M
13
+ ---
14
+
15
+ # serving_a — Café Pick-and-Place (Long Episode)
16
+
17
+ LeRobot **v3.0** dataset for OpenManipulator-X (OMX) cafe serving task.
18
+ This is the **Category A (Long Episode)** subset of the GR00T N1.7 fine-tuning dataset.
19
+
20
+ A converted **v2.1** version (per-episode parquet/mp4 layout, GR00T-trainable) is produced from this dataset using `scripts/lerobot_conversion/convert_v3_to_v2.py`.
21
+
22
+ ---
23
+
24
+ ## Dataset summary
25
+
26
+ | Item | Value |
27
+ | ------------------ | ---------------------------------------------- |
28
+ | Robot | OpenManipulator-X 4-DOF (`omx_follower`) |
29
+ | Codebase version | `v3.0` |
30
+ | Total episodes | 265 |
31
+ | Total frames | 144,788 |
32
+ | FPS | 30 |
33
+ | Cameras | `observation.images.top`, `observation.images.wrist` (640×480, 30 fps) |
34
+ | State / Action dim | 6 each (single_arm × 5, gripper × 1) |
35
+ | Action horizon | 16 (configured via `examples/OMX/omx_config.py`) |
36
+ | Tasks | 3 (see below) |
37
+
38
+ ## Tasks (`task_index`)
39
+
40
+ | index | instruction |
41
+ | :---: | ------------------------------------------ |
42
+ | 0 | `pick up plate and place at target zone` |
43
+ | 1 | `pick up cup and place at target zone` |
44
+ | 2 | `return to home` |
45
+
46
+ ### task distribution
47
+
48
+ | task_index | frames | pct |
49
+ | ---------- | -----: | ---: |
50
+ | 0 (plate) | 49,698 | 34.3% |
51
+ | 1 (cup) | 66,874 | 46.2% |
52
+ | 2 (home) | 28,216 | 19.5% |
53
+
54
+ ---
55
+
56
+ ## Scenario composition (Category A — Long Episode)
57
+
58
+ Every episode starts at home pose, performs the task(s), and returns to home.
59
+ Each scenario was collected as a separate sub-dataset (`serving_a1`…`serving_a7`) and then merged.
60
+
61
+ | sub-id | scenario | env state | success | retry | total |
62
+ | :----: | ---------------------- | -------------------- | ------: | ----: | ----: |
63
+ | A-1 | one cup | cup=1 | 30 | 5 | **35** |
64
+ | A-2 | one plate | plate=1 | 30 | 5 | **35** |
65
+ | A-3 | two plates | plate=2 | 30 | 10 | **40** |
66
+ | A-4 | two cups | cup=2 | 30 | 10 | **40** |
67
+ | A-5 | one plate + one cup | plate=1, cup=1 | 38 | 12 | **50** |
68
+ | A-6 | one plate + two cups | plate=1, cup=2 | 35 | 10 | **45** |
69
+ | A-7 | empty env (stop) | empty (2 sub-cases) | 18 | 0 | **18** |
70
+ | | **Total** | | **211** | **52**| **265**|
71
+
72
+ * **success**: completed normally.
73
+ * **retry**: gripper miss → short back-off → retry → success, all within a single episode.
74
+ * **A-7 sub-cases**: 7 episodes with both workspaces empty; 11 episodes with pick workspace empty and place workspace already containing previously-served objects (forces VLM to learn "stop when nothing to pick" even with clutter in the place zone).
75
+
76
+ ---
77
+
78
+ ## Label boundary scheme
79
+
80
+ Multi-task episodes are segmented into per-action task ranges so the policy can learn the language–action grounding.
81
+
82
+ | sub-id | segment pattern | # boundaries |
83
+ | :----: | ------------------------------------------------------------ | :----------: |
84
+ | A-1 | `cup(1) → home(2)` | 1 |
85
+ | A-2 | `plate(0) → home(2)` | 1 |
86
+ | A-3 | `plate(0) → plate(0) → home(2)` (per-plate restart) | 2 |
87
+ | A-4 | `cup(1) → cup(1) → home(2)` (per-cup restart) | 2 |
88
+ | A-5 | `cup(1) → plate(0) → home(2)` | 2 |
89
+ | A-6 | `cup(1) → cup(1) → plate(0) → home(2)` | 3 |
90
+ | A-7 | `home(2)` only | 0 |
91
+
92
+ Boundaries were auto-detected from gripper signal events (`fully_close` → next `start_open`) and audited manually for edge cases. Episodes that lacked the expected number of events had their missing boundary estimated from the median percentile of complete episodes within the same scenario.
93
+
94
+ ---
95
+
96
+ ## Repository layout
97
+
98
+ ```
99
+ serving_a/
100
+ ├── data/chunk-000/file-000.parquet # all frames, concatenated
101
+ ├── meta/
102
+ │ ├── info.json # codebase_version, features, totals
103
+ │ ├── tasks.parquet # task_index → instruction
104
+ │ └── episodes/chunk-000/file-000.parquet # per-episode metadata + stats
105
+ └── videos/
106
+ ├── observation.images.top/chunk-000/file-000.mp4
107
+ └── observation.images.wrist/chunk-000/file-000.mp4
108
+ ```
109
+
110
+ ---
111
+
112
+ ## Companion dataset
113
+
114
+ This is **Category A only**. The matching **Category B (atomic-focused demos)** dataset is available as:
115
+
116
+ > [`jae0311/serving_b`](https://huggingface.co/datasets/jae0311/serving_b) — 160 episodes, 75,089 frames
117
+
118
+ For GR00T N1.7 fine-tuning we use a 2-stage schedule:
119
+
120
+ | Stage | Data | max-steps | LR | Goal |
121
+ | :---: | --------------- | :-------: | :----: | ----------------------------------------- |
122
+ | 1 | `serving_b` (B) | 5,000 | 1e-4 | atomic pick-and-place reliability |
123
+ | 2 | A+B merged | 25,000 | 5e-5 | full long-episode performance from Stage 1 ckpt |
124
+
125
+ ---
126
+
127
+ ## Citation / acknowledgments
128
+
129
+ - Model: [GR00T N1.7](https://huggingface.co/nvidia/GR00T-N1.7-3B) (NVIDIA)
130
+ - Dataset format: [LeRobot](https://github.com/huggingface/lerobot)
131
+ - Robot: ROBOTIS OpenManipulator-X
data/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18bf4c692d19cf2fd33a860a4607f83fb88167a365b88eecb8689500b001a6ef
3
+ size 3619937
meta/episodes/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94ff5fc3d0b65861689b91f4c2250d8a6fa6ec836f44d8f724a8a7f68840f8ee
3
+ size 458193
meta/info.json ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v3.0",
3
+ "fps": 30,
4
+ "features": {
5
+ "action": {
6
+ "dtype": "float32",
7
+ "names": [
8
+ "shoulder_pan.pos",
9
+ "shoulder_lift.pos",
10
+ "elbow_flex.pos",
11
+ "wrist_flex.pos",
12
+ "wrist_roll.pos",
13
+ "gripper.pos"
14
+ ],
15
+ "shape": [
16
+ 6
17
+ ]
18
+ },
19
+ "observation.state": {
20
+ "dtype": "float32",
21
+ "names": [
22
+ "shoulder_pan.pos",
23
+ "shoulder_lift.pos",
24
+ "elbow_flex.pos",
25
+ "wrist_flex.pos",
26
+ "wrist_roll.pos",
27
+ "gripper.pos"
28
+ ],
29
+ "shape": [
30
+ 6
31
+ ]
32
+ },
33
+ "observation.images.top": {
34
+ "dtype": "video",
35
+ "shape": [
36
+ 480,
37
+ 640,
38
+ 3
39
+ ],
40
+ "names": [
41
+ "height",
42
+ "width",
43
+ "channels"
44
+ ],
45
+ "info": {
46
+ "video.height": 480,
47
+ "video.width": 640,
48
+ "video.codec": "av1",
49
+ "video.pix_fmt": "yuv420p",
50
+ "video.is_depth_map": false,
51
+ "video.fps": 30,
52
+ "video.channels": 3,
53
+ "has_audio": false
54
+ }
55
+ },
56
+ "observation.images.wrist": {
57
+ "dtype": "video",
58
+ "shape": [
59
+ 480,
60
+ 640,
61
+ 3
62
+ ],
63
+ "names": [
64
+ "height",
65
+ "width",
66
+ "channels"
67
+ ],
68
+ "info": {
69
+ "video.height": 480,
70
+ "video.width": 640,
71
+ "video.codec": "av1",
72
+ "video.pix_fmt": "yuv420p",
73
+ "video.is_depth_map": false,
74
+ "video.fps": 30,
75
+ "video.channels": 3,
76
+ "has_audio": false
77
+ }
78
+ },
79
+ "timestamp": {
80
+ "dtype": "float32",
81
+ "shape": [
82
+ 1
83
+ ],
84
+ "names": null
85
+ },
86
+ "frame_index": {
87
+ "dtype": "int64",
88
+ "shape": [
89
+ 1
90
+ ],
91
+ "names": null
92
+ },
93
+ "episode_index": {
94
+ "dtype": "int64",
95
+ "shape": [
96
+ 1
97
+ ],
98
+ "names": null
99
+ },
100
+ "index": {
101
+ "dtype": "int64",
102
+ "shape": [
103
+ 1
104
+ ],
105
+ "names": null
106
+ },
107
+ "task_index": {
108
+ "dtype": "int64",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "names": null
113
+ }
114
+ },
115
+ "total_episodes": 265,
116
+ "total_frames": 144788,
117
+ "total_tasks": 3,
118
+ "chunks_size": 1000,
119
+ "data_files_size_in_mb": 100,
120
+ "video_files_size_in_mb": 200,
121
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
122
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
123
+ "robot_type": "omx_follower",
124
+ "splits": {
125
+ "train": "0:265"
126
+ }
127
+ }
meta/tasks.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79bc2414b59755150e8212b3feb87f2f8a4b3447891414b72f8bc04aa9931ee0
3
+ size 2173
videos/observation.images.top/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a027cef82bb602810d9b40ef37d5d53c95f7818656d164ff19d9cdac1286b2d
3
+ size 666881264
videos/observation.images.wrist/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abc309e13b0100d9a2523194f2b61ab143355df1afea2fa427e37f516a0b3da0
3
+ size 980156072