lukasskellijs commited on
Commit
50e2d46
·
verified ·
1 Parent(s): 7a6460c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +165 -82
README.md CHANGED
@@ -4,102 +4,185 @@ task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
- - robotics
8
- - isaac-sim
9
- - assembly
10
- - manipulation
11
- - imitation-learning
12
- - contact-rich
13
  configs:
14
  - config_name: default
15
  data_files: data/*/*.parquet
16
  ---
17
 
18
- # assembly_bench_3
19
-
20
- Multi-task contact-rich assembly demonstrations for imitation learning / VLA fine-tuning.
21
- Built from a cleaned and topped-up revision of [`assembly_bench_2`](https://huggingface.co/datasets/lukasskellijs/assembly_bench_2), with a second QC pass for duplicates, idle chunks, length outliers, and within-family Mahalanobis outliers.
22
-
23
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
24
 
 
25
  <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=lukasskellijs/assembly_bench_3">
26
  <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
27
- <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-dark-xl.svg"/>
28
  </a>
29
 
30
- ## Summary
31
-
32
- | | |
33
- |---|---|
34
- | Episodes | **1355** |
35
- | Frames | **444651** |
36
- | FPS | 15 |
37
- | Tasks | 14 (pegs, gears, nuts; **no M20**) |
38
- | Action | DROID 8-D joint position (7 arm + binary gripper) |
39
- | Cameras | `observation.images.front`, `observation.images.wrist` at 180x320 |
40
- | Proprio | `observation.state` (8), `joint_vel` (7), `eef_pos` (3), `eef_quat` (4) |
41
-
42
- ## Tasks (episode counts)
43
-
44
- Language-conditioned pick / insert / mesh / thread:
45
-
46
- | family | task | n |
47
- |--------|------|---|
48
- | peg_round | 4 / 8 / 12 / 16 mm | 96 / 99 / 100 / 100 |
49
- | peg_square | 4 / 8 / 12 / 16 mm | 98 / 98 / 99 / 100 |
50
- | gear_mesh | small / medium / large | 92 / 97 / 92 |
51
- | nut_thread | M8 / M12 / M16 | 90 / 95 / 99 |
52
-
53
- **M20 removed:** embedding analysis (PCA / t-SNE) showed M20 as a separate mode that split the nut cluster; it is not included.
54
-
55
- ## How it was built
56
 
57
- Pipeline:
58
-
59
- 1. Start from [`assembly_bench_2_clean`](https://huggingface.co/datasets/lukasskellijs/assembly_bench_2_clean) (911 eps: dups + long outliers already removed from the original 1500).
60
- 2. Drop all **M20** nut episodes.
61
- 3. Append scripted-expert top-up HDF5 demos that refill the gaps left by the clean pass (success-filtered Isaac Lab recordings).
62
- 4. QC blocklist (45 trajectories by MD5 of full `action || state`):
63
- - exact-duplicate extras (none remained after clean + ingest dedup)
64
- - idle runs ≥ 15 frames (action-chunk size used in training)
65
- - per-task length >3σ and clear within-family **20-PC Mahalanobis** outliers (retry / thrash / bad seat)
66
- 5. Final exact-duplicate scan must be zero or the build aborts.
67
-
68
- Quality over quantity: mild multivariate peg shape outliers that look like valid successes were kept.
69
-
70
- ## Schema
71
-
72
- Same contract as `assembly_bench_2` / DROID joint-pos:
73
-
74
- | key | shape | notes |
75
- |-----|-------|--------|
76
- | `action` | (8,) | absolute joint targets + gripper |
77
- | `observation.state` | (8,) | joint pos (7) + gripper |
78
- | `observation.joint_vel` | (7,) | rad/s |
79
- | `observation.eef_pos` | (3,) | base-frame XYZ (m) |
80
- | `observation.eef_quat` | (4,) | world WXYZ |
81
- | `observation.images.front` | video HxWx3 | 180x320 |
82
- | `observation.images.wrist` | video HxWx3 | 180x320 |
83
-
84
- ## Load
85
-
86
- ```python
87
- from lerobot.datasets.lerobot_dataset import LeRobotDataset
88
-
89
- ds = LeRobotDataset("lukasskellijs/assembly_bench_3")
90
- print(ds.num_episodes, ds.num_frames)
91
- print(ds[0]["observation.images.wrist"].shape)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  ```
93
 
94
- ## Intended use
95
-
96
- - Supervised fine-tuning of VLA / diffusion / ACT policies with **action chunk size 15**
97
- - Multi-task assembly benchmarking (peg / gear / nut families)
98
 
99
- Not a teleop human dataset. Demonstrations are from a privileged scripted expert in Isaac Sim / Isaac Lab; visuals and proprio match the policy observation contract.
100
 
101
- ## Citation / lineage
102
 
103
- - Source family: `lukasskellijs/assembly_bench_2``assembly_bench_2_clean` → top-up + QC → **`assembly_bench_3`**
104
- - Simulator: NVIDIA Isaac Sim 6 / Isaac Lab Arena
105
- - Format: LeRobot v3.0
 
4
  - robotics
5
  tags:
6
  - LeRobot
 
 
 
 
 
 
7
  configs:
8
  - config_name: default
9
  data_files: data/*/*.parquet
10
  ---
11
 
 
 
 
 
 
12
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
13
 
14
+
15
  <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=lukasskellijs/assembly_bench_3">
16
  <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
17
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
18
  </a>
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
+ ## Dataset Description
22
+
23
+
24
+
25
+ - **Homepage:** [More Information Needed]
26
+ - **Paper:** [More Information Needed]
27
+ - **License:** apache-2.0
28
+
29
+ ## Dataset Structure
30
+
31
+ [meta/info.json](meta/info.json):
32
+ ```json
33
+ {
34
+ "codebase_version": "v3.0",
35
+ "fps": 15,
36
+ "features": {
37
+ "observation.images.front": {
38
+ "dtype": "video",
39
+ "shape": [
40
+ 180,
41
+ 320,
42
+ 3
43
+ ],
44
+ "names": [
45
+ "height",
46
+ "width",
47
+ "channel"
48
+ ],
49
+ "info": {
50
+ "video.height": 180,
51
+ "video.width": 320,
52
+ "video.codec": "h264",
53
+ "video.pix_fmt": "yuv420p",
54
+ "video.fps": 15,
55
+ "video.channels": 3,
56
+ "has_audio": false,
57
+ "video.g": 2,
58
+ "video.crf": 20,
59
+ "video.preset": null,
60
+ "video.fast_decode": 0,
61
+ "video.video_backend": "pyav",
62
+ "video.extra_options": {},
63
+ "is_depth_map": false
64
+ }
65
+ },
66
+ "observation.images.wrist": {
67
+ "dtype": "video",
68
+ "shape": [
69
+ 180,
70
+ 320,
71
+ 3
72
+ ],
73
+ "names": [
74
+ "height",
75
+ "width",
76
+ "channel"
77
+ ],
78
+ "info": {
79
+ "video.height": 180,
80
+ "video.width": 320,
81
+ "video.codec": "h264",
82
+ "video.pix_fmt": "yuv420p",
83
+ "video.fps": 15,
84
+ "video.channels": 3,
85
+ "has_audio": false,
86
+ "video.g": 2,
87
+ "video.crf": 20,
88
+ "video.preset": null,
89
+ "video.fast_decode": 0,
90
+ "video.video_backend": "pyav",
91
+ "video.extra_options": {},
92
+ "is_depth_map": false
93
+ }
94
+ },
95
+ "observation.state": {
96
+ "dtype": "float32",
97
+ "shape": [
98
+ 8
99
+ ],
100
+ "names": null
101
+ },
102
+ "observation.joint_vel": {
103
+ "dtype": "float32",
104
+ "shape": [
105
+ 7
106
+ ],
107
+ "names": null
108
+ },
109
+ "observation.eef_pos": {
110
+ "dtype": "float32",
111
+ "shape": [
112
+ 3
113
+ ],
114
+ "names": null
115
+ },
116
+ "observation.eef_quat": {
117
+ "dtype": "float32",
118
+ "shape": [
119
+ 4
120
+ ],
121
+ "names": null
122
+ },
123
+ "action": {
124
+ "dtype": "float32",
125
+ "shape": [
126
+ 8
127
+ ],
128
+ "names": null
129
+ },
130
+ "timestamp": {
131
+ "dtype": "float32",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "frame_index": {
138
+ "dtype": "int64",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ },
144
+ "episode_index": {
145
+ "dtype": "int64",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ },
158
+ "task_index": {
159
+ "dtype": "int64",
160
+ "shape": [
161
+ 1
162
+ ],
163
+ "names": null
164
+ }
165
+ },
166
+ "total_episodes": 1355,
167
+ "total_frames": 444651,
168
+ "total_tasks": 14,
169
+ "chunks_size": 1000,
170
+ "data_files_size_in_mb": 100,
171
+ "video_files_size_in_mb": 200,
172
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
173
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
174
+ "robot_type": null,
175
+ "splits": {
176
+ "train": "0:1355"
177
+ }
178
+ }
179
  ```
180
 
 
 
 
 
181
 
182
+ ## Citation
183
 
184
+ **BibTeX:**
185
 
186
+ ```bibtex
187
+ [More Information Needed]
188
+ ```