Arthur12137 commited on
Commit
3b19652
·
verified ·
1 Parent(s): 75c9d7a

Update dataset card: eval-assets, download commands, provenance

Browse files
Files changed (1) hide show
  1. README.md +72 -19
README.md CHANGED
@@ -14,28 +14,68 @@ pretty_name: SoftVTBench
14
 
15
  # SoftVTBench
16
 
17
- Visuo-tactile manipulation data for rigid and soft/deformable LIBERO-style pick-and-place tasks, collected with a tactile-sensing Franka arm in Isaac Lab (Tabero simulation stack). Companion data release for [SoftTacWorld](https://github.com/) (code repository).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
  ## Folders
20
 
21
- | Folder | Task suite | Object type | Tasks x Demos | Size |
22
- |---|---|---|---|---|
23
- | `spatial-rigid/` | `libero_spatial` (baseline) | Rigid | 10 tasks, 207 demos (uneven) | 238M |
24
- | `spatial-soft/` | `libero_spatial` + soft pastry variant | Deformable | 10 tasks x 50 = 500 demos | 498M |
25
- | `object-rigid/` | `libero_object` (baseline) | Rigid | 10 tasks, 421 demos (uneven) | 425M |
26
- | `object-soft/` | `libero_object` + soft pastry variant (10 assets) | Deformable | 10 tasks x 50 = 500 demos | 896M |
27
- | `soft-assets/` | — | — | 11 deformable pastry USD assets + geometry primitives | 51M |
 
28
 
29
- `*-rigid` folders are baseline LIBERO replays (no soft-body assets); `*-soft` folders swap in deformable pastry objects and add FEM soft-body observations. See `soft-assets/configs/asset_manifest.csv` for the pastry asset list.
 
30
 
31
- ## Format
 
 
 
32
 
33
- Each `spatial-*`/`object-*` folder follows the "Replay HDF5" layout:
34
 
35
  ```text
36
- libero_{spatial,object}/
37
- libero_{spatial,object}_task{N}/
38
- replayed_demos/*.hdf5 # one file per task, all demos under data/demo_*
 
39
  video_datasets/*/videos/*.mp4 # agentview + eye-in-hand RGB
40
  video_datasets/*/tactile_outputs/*.mp4 # rendered tactile marker video
41
  ```
@@ -47,13 +87,26 @@ Inside each HDF5, `data/demo_N` contains:
47
  - `obs/fem_deformation_max`, `obs/fem_deformation_rms`, `obs/fem_bbox_dims` — soft-body only, `*-soft` folders
48
  - `initial_state/`, `states/` — full Isaac Lab scene state for reset/replay
49
 
50
- Full field-by-field schema: see `datasets/schemas/*.md` in the SoftTacWorld code repository.
51
 
52
  ## Known caveats
53
 
54
- - `spatial-rigid` / `object-rigid` demo counts are uneven per task (raw collection yield, not padded to a fixed quota).
55
- - `spatial-soft` force labels are mostly gripper-closing proxy forces rather than clean contact-sensor forces; task5 mixes both. See `spatial-soft/spatial_pastry005_data_quality_check_20260625.md`.
 
 
 
 
 
 
 
 
 
 
56
 
57
- ## License
 
 
 
58
 
59
- Apache License 2.0.
 
14
 
15
  # SoftVTBench
16
 
17
+ Visuo-tactile manipulation data for **rigid and soft/deformable** LIBERO-style
18
+ pick-and-place tasks, collected with a tactile-sensing Franka arm in Isaac Lab
19
+ (Tabero simulation stack).
20
+
21
+ Mirrored on both hubs:
22
+
23
+ - Hugging Face — [`Arthur12137/SoftVTBench`](https://huggingface.co/datasets/Arthur12137/SoftVTBench)
24
+ - ModelScope — [`Arthur12137/SoftVTBench`](https://www.modelscope.cn/datasets/Arthur12137/SoftVTBench)
25
+
26
+ ## Download
27
+
28
+ ```bash
29
+ pip install -U huggingface_hub
30
+ huggingface-cli download Arthur12137/SoftVTBench \
31
+ --repo-type dataset --local-dir ./SoftVTBench_data
32
+ ```
33
+
34
+ From ModelScope (faster in mainland China):
35
+
36
+ ```python
37
+ from modelscope import dataset_snapshot_download
38
+ dataset_snapshot_download('Arthur12137/SoftVTBench', local_dir='./SoftVTBench_data')
39
+ ```
40
+
41
+ The full release is ~2.3 GB. Fetch only what you need:
42
+
43
+ ```bash
44
+ # training on the deformable-object suite
45
+ huggingface-cli download Arthur12137/SoftVTBench --repo-type dataset \
46
+ --include 'object-soft/*' --local-dir ./SoftVTBench_data
47
+
48
+ # add closed-loop evaluation (USD scene assets)
49
+ huggingface-cli download Arthur12137/SoftVTBench --repo-type dataset \
50
+ --include 'eval-assets/*' --local-dir ./SoftVTBench_data
51
+ ```
52
 
53
  ## Folders
54
 
55
+ | Folder | Task suite | Object type | Tasks × Demos | Size | Needed for |
56
+ |---|---|---|---|---|---|
57
+ | `object-soft/` | `libero_object` + soft pastry (10 assets) | Deformable | 10 × 50 = 500 | 896M | training, eval |
58
+ | `spatial-soft/` | `libero_spatial` + soft pastry | Deformable | 10 × 50 = 500 | 498M | training, eval |
59
+ | `object-rigid/` | `libero_object` (baseline) | Rigid | 10 tasks, 421 demos (uneven) | 425M | training, eval |
60
+ | `spatial-rigid/` | `libero_spatial` (baseline) | Rigid | 10 tasks, 207 demos (uneven) | 238M | training, eval |
61
+ | `eval-assets/` | — | — | 43 USD assets | 211M | **evaluation only** |
62
+ | `soft-assets/` | — | — | 11 pastry USD + geometry primitives | 51M | asset authoring |
63
 
64
+ `*-rigid` folders are baseline LIBERO replays (no soft-body assets); `*-soft`
65
+ folders swap in deformable pastry objects and add FEM soft-body observations.
66
 
67
+ `eval-assets/` holds the USD scene library Isaac Sim needs to rebuild the scene
68
+ for closed-loop evaluation — 32 LIBERO scene objects plus 11 deformable assets,
69
+ all following the `<name>/<name>.usd` convention. Training does not need it.
70
+ See `eval-assets/README.md` for provenance.
71
 
72
+ ## Layout
73
 
74
  ```text
75
+ object-soft/
76
+ manifest.jsonl
77
+ libero_object/libero_object_task{0..9}/
78
+ replayed_demos/*.hdf5 # one file per task, demos under data/demo_*
79
  video_datasets/*/videos/*.mp4 # agentview + eye-in-hand RGB
80
  video_datasets/*/tactile_outputs/*.mp4 # rendered tactile marker video
81
  ```
 
87
  - `obs/fem_deformation_max`, `obs/fem_deformation_rms`, `obs/fem_bbox_dims` — soft-body only, `*-soft` folders
88
  - `initial_state/`, `states/` — full Isaac Lab scene state for reset/replay
89
 
90
+ Training pipelines drop the two force channels and supervise 7D actions.
91
 
92
  ## Known caveats
93
 
94
+ - `spatial-rigid` / `object-rigid` demo counts are uneven per task (raw collection
95
+ yield, not padded to a fixed quota).
96
+ - `spatial-soft` force labels are mostly gripper-closing proxy forces rather than
97
+ clean contact-sensor forces; task5 mixes both. See
98
+ `spatial-soft/spatial_pastry005_data_quality_check_20260625.md`.
99
+ - `spatial-soft/manifest.jsonl` covers tasks 0–4 only; tasks 5–9 are listed in
100
+ `manifest_task5_9_copy_20260624.jsonl`. Derive demo counts from the HDF5 files,
101
+ not from a manifest line count.
102
+
103
+ ## Provenance & licensing
104
+
105
+ Released under the Apache License 2.0.
106
 
107
+ The rigid scene objects in `eval-assets/` originate from the
108
+ [LIBERO](https://github.com/Lifelong-Robot-Learning/LIBERO) benchmark (MIT),
109
+ converted to USD by [Tabero](https://github.com/NathanWu7/Tabero) (Apache-2.0).
110
+ The deformable assets and all trajectory data are contributed by this project.
111
 
112
+ If you use this dataset, please cite LIBERO and Tabero alongside SoftVTBench.