docs: update card for AssembleBench rename
Browse files
README.md
CHANGED
|
@@ -15,14 +15,18 @@ configs:
|
|
| 15 |
data_files: data/*/*.parquet
|
| 16 |
---
|
| 17 |
|
| 18 |
-
#
|
| 19 |
|
| 20 |
-
Multi-task contact-rich assembly demonstrations for imitation learning / VLA fine-tuning
|
| 21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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=
|
| 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>
|
|
@@ -54,22 +58,25 @@ Language-conditioned pick / insert / mesh / thread:
|
|
| 54 |
|
| 55 |
## How it was built
|
| 56 |
|
| 57 |
-
|
|
|
|
|
|
|
|
|
|
| 58 |
|
| 59 |
-
1. Start from
|
| 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
|
| 65 |
-
- per-task length >3
|
| 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 |
-
|
| 73 |
|
| 74 |
| key | shape | notes |
|
| 75 |
|-----|-------|--------|
|
|
@@ -86,7 +93,7 @@ Same contract as `assembly_bench_2` / DROID joint-pos:
|
|
| 86 |
```python
|
| 87 |
from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
| 88 |
|
| 89 |
-
ds = LeRobotDataset("
|
| 90 |
print(ds.num_episodes, ds.num_frames)
|
| 91 |
print(ds[0]["observation.images.wrist"].shape)
|
| 92 |
```
|
|
@@ -98,8 +105,16 @@ print(ds[0]["observation.images.wrist"].shape)
|
|
| 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 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|
|
|
|
| 15 |
data_files: data/*/*.parquet
|
| 16 |
---
|
| 17 |
|
| 18 |
+
# AssembleBench
|
| 19 |
|
| 20 |
+
Multi-task contact-rich assembly demonstrations for imitation learning / VLA fine-tuning,
|
| 21 |
+
and the training set behind the [AssembleBench](https://github.com/hud-evals/assemble-bench)
|
| 22 |
+
benchmark: 14 tasks on the NIST ATB-1 taskboard (insert round and square pegs, mesh gears,
|
| 23 |
+
thread nuts) on the DROID robot platform.
|
| 24 |
+
|
| 25 |
+
Read the writeup: [Benchmarking Robot Models on Contact-Rich Assembly](https://www.hud.ai/blog/assemble-benchmark).
|
| 26 |
|
| 27 |
This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
|
| 28 |
|
| 29 |
+
<a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=hud-evals/AssembleBench">
|
| 30 |
<img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
|
| 31 |
<img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-dark-xl.svg"/>
|
| 32 |
</a>
|
|
|
|
| 58 |
|
| 59 |
## How it was built
|
| 60 |
|
| 61 |
+
Built from a cleaned and topped-up revision of
|
| 62 |
+
[`lukasskellijs/assembly_bench_2`](https://huggingface.co/datasets/lukasskellijs/assembly_bench_2),
|
| 63 |
+
with a second QC pass for duplicates, idle chunks, length outliers, and within-family
|
| 64 |
+
Mahalanobis outliers. Pipeline:
|
| 65 |
|
| 66 |
+
1. Start from the cleaned v2 revision (911 eps: dups + long outliers already removed from the original 1500).
|
| 67 |
2. Drop all **M20** nut episodes.
|
| 68 |
3. Append scripted-expert top-up HDF5 demos that refill the gaps left by the clean pass (success-filtered Isaac Lab recordings).
|
| 69 |
4. QC blocklist (45 trajectories by MD5 of full `action || state`):
|
| 70 |
- exact-duplicate extras (none remained after clean + ingest dedup)
|
| 71 |
+
- idle runs >= 15 frames (action-chunk size used in training)
|
| 72 |
+
- per-task length >3 sigma and clear within-family **20-PC Mahalanobis** outliers (retry / thrash / bad seat)
|
| 73 |
5. Final exact-duplicate scan must be zero or the build aborts.
|
| 74 |
|
| 75 |
Quality over quantity: mild multivariate peg shape outliers that look like valid successes were kept.
|
| 76 |
|
| 77 |
## Schema
|
| 78 |
|
| 79 |
+
DROID joint-position contract:
|
| 80 |
|
| 81 |
| key | shape | notes |
|
| 82 |
|-----|-------|--------|
|
|
|
|
| 93 |
```python
|
| 94 |
from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
| 95 |
|
| 96 |
+
ds = LeRobotDataset("hud-evals/AssembleBench")
|
| 97 |
print(ds.num_episodes, ds.num_frames)
|
| 98 |
print(ds[0]["observation.images.wrist"].shape)
|
| 99 |
```
|
|
|
|
| 105 |
|
| 106 |
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.
|
| 107 |
|
| 108 |
+
## Reference checkpoints
|
| 109 |
+
|
| 110 |
+
pi0.5 finetunes trained on this dataset:
|
| 111 |
+
|
| 112 |
+
| Checkpoint | What it is |
|
| 113 |
+
|---|---|
|
| 114 |
+
| [`pi05-AssembleBench-12k`](https://huggingface.co/hud-evals/pi05-AssembleBench-12k) | behavior-cloning baseline, all 14 tasks |
|
| 115 |
+
| [`pi05-AssembleBench-cgdagger-r3`](https://huggingface.co/hud-evals/pi05-AssembleBench-cgdagger-r3) | BC + 3 rounds of code-gated DAgger, the final checkpoint |
|
| 116 |
+
|
| 117 |
+
## Lineage
|
| 118 |
|
|
|
|
| 119 |
- Simulator: NVIDIA Isaac Sim 6 / Isaac Lab Arena
|
| 120 |
- Format: LeRobot v3.0
|