Dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
tags:
|
| 6 |
+
- cloth
|
| 7 |
+
- deformable-objects
|
| 8 |
+
- garment
|
| 9 |
+
- bimanual
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# dexgarmentlab-dual-meshes-clean
|
| 13 |
+
|
| 14 |
+
Two-hand DexGarmentLab garment manipulation demos with full mesh state,
|
| 15 |
+
point-cloud observations, and per-hand gripper trajectories.
|
| 16 |
+
|
| 17 |
+
- **File:** `dexgarmentlab_dual_gps2048_clean.h5` (1.4 GB)
|
| 18 |
+
- **239 garments** — 136 Top, 77 Pants, 26 Dress (14 fine classes)
|
| 19 |
+
- **894 trajectories**, **28 673 steps**, 12-59 steps per trajectory
|
| 20 |
+
- **1637-2048 vertices**, <=12 102 bidirectional edges per mesh
|
| 21 |
+
- **Tasks:** Fold (400 trajectories), Fling (249), Hang (200), Store (45)
|
| 22 |
+
|
| 23 |
+
## Split
|
| 24 |
+
|
| 25 |
+
The `training` / `validation` split is **baked into the file** at the top
|
| 26 |
+
level and is **by garment**: 215 training cloths / 24 validation cloths, zero
|
| 27 |
+
overlap. Every trajectory of a validation garment is held out, so this is a
|
| 28 |
+
held-out-*object* protocol rather than the held-out-trajectory protocol the
|
| 29 |
+
predecessor dataset forced. Loaders honour the groups directly and ignore
|
| 30 |
+
`val_trajectory_ratio`.
|
| 31 |
+
|
| 32 |
+
## Two hands
|
| 33 |
+
|
| 34 |
+
644 of 894 trajectories move both hands; the rest move one and park the other.
|
| 35 |
+
Per-hand truth:
|
| 36 |
+
|
| 37 |
+
- `gripper_pos_2h` — `(2, 3)` per step, both end-effector positions
|
| 38 |
+
- `actuated_vertices_2h` — `(2, V)` boolean, which vertices each hand holds
|
| 39 |
+
- `hand_active` — trajectory attribute, `(2,)` boolean
|
| 40 |
+
|
| 41 |
+
The file also carries legacy single-gripper `gripper_pos` `(3,)` /
|
| 42 |
+
`actuated_vertices` `(V,)` for backwards compatibility. **On a two-handed
|
| 43 |
+
trajectory these are lossy** and should not be used for training: the legacy
|
| 44 |
+
point is a *virtual* gripper sitting between the hands, measured ~14 cm from
|
| 45 |
+
the vertices it nominally drives (the real per-hand positions are 3-4 cm
|
| 46 |
+
away), and the legacy mask covers only ~85 of the ~153 vertices the two hands
|
| 47 |
+
actually hold.
|
| 48 |
+
|
| 49 |
+
## `-clean`: training only
|
| 50 |
+
|
| 51 |
+
Point clouds have had scene geometry (the robot arm) removed using the
|
| 52 |
+
ground-truth cloth mesh — points further than `reject_m = 0.05` from the
|
| 53 |
+
frame's own mesh are dropped. That segmentation uses information no estimator
|
| 54 |
+
has at inference time, so this file is **correct for training and wrong for
|
| 55 |
+
evaluating an observation model**. For evaluation use an uncleaned recording
|
| 56 |
+
with an outlier-robust likelihood (the particle filter's
|
| 57 |
+
`obs_trim_fraction`).
|
| 58 |
+
|
| 59 |
+
## Structure
|
| 60 |
+
|
| 61 |
+
```
|
| 62 |
+
{training,validation}/<cloth_key>/
|
| 63 |
+
rest_positions (V, 3) float32
|
| 64 |
+
edges (E, 2) int32
|
| 65 |
+
faces (F, 3) int32
|
| 66 |
+
trajectory_<i>/
|
| 67 |
+
actuated_vertices (V,) bool # legacy, merged — see above
|
| 68 |
+
actuated_vertices_2h (2, V) bool
|
| 69 |
+
@hand_active (2,) bool
|
| 70 |
+
@task, @demo, @n_steps, @source
|
| 71 |
+
step_<nnnn>/
|
| 72 |
+
positions (V, 3) float32
|
| 73 |
+
gripper_pos (3,) float32 # legacy, virtual — see above
|
| 74 |
+
gripper_pos_2h (2, 3) float32
|
| 75 |
+
pointclouds/ <= 2048 points, one camera
|
| 76 |
+
```
|
| 77 |
+
|
| 78 |
+
## Models trained on this dataset
|
| 79 |
+
|
| 80 |
+
- [Cloth-splatters/dexgarmentlab-dual-dynamics-gps](https://huggingface.co/Cloth-splatters/dexgarmentlab-dual-dynamics-gps) — DDPM diffusion
|
| 81 |
+
- [Cloth-splatters/dexgarmentlab-dual-dynamics-gps-flow](https://huggingface.co/Cloth-splatters/dexgarmentlab-dual-dynamics-gps-flow) — flow matching
|
| 82 |
+
- [Cloth-splatters/dexgarmentlab-dual-dynamics-gns](https://huggingface.co/Cloth-splatters/dexgarmentlab-dual-dynamics-gns) — Graph Network Simulator
|