Datasets:
File size: 5,039 Bytes
1b0ee1d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | ---
license: apache-2.0
task_categories:
- robotics
tags:
- manipulation
- tactile
- deformable-objects
- archive
pretty_name: SoftVTBench (archive)
---
# SoftVTBench — archive
Frozen snapshot of everything that lived in `Arthur12137/SoftVTBench` before the
2026-08-13 re-release: the evaluation USD assets, the soft-body assets, and the
first partial data drops.
**This repo is not maintained.** The current dataset is at
[`Arthur12137/SoftVTBench`](https://huggingface.co/datasets/Arthur12137/SoftVTBench).
Contents: `eval-assets/`, `soft-assets/`, `object-rigid/`, `object-soft/`,
`spatial-rigid/`, `spatial-soft/` (9319 files, 2.3 GB).
---
<details>
<summary>Original dataset card (kept verbatim)</summary>
# SoftVTBench dataset card
This is the canonical dataset card for both Hugging Face and ModelScope. Retain
`license: other` until the final asset terms and written redistribution
permission described below are attached; do not replace it with the code
repository's Apache-2.0 license.
## Download
Until the asset permissions described below are complete, download only the
trajectory/observation data:
```bash
pip install -U huggingface_hub
huggingface-cli download Arthur12137/SoftVTBench \
--repo-type dataset \
--include 'object-soft/*' --include 'spatial-soft/*' \
--include 'object-rigid/*' --include 'spatial-rigid/*' \
--local-dir ./SoftVTBench_data
```
Mainland-China mirror:
```python
from modelscope import dataset_snapshot_download
dataset_snapshot_download(
"Arthur12137/SoftVTBench",
local_dir="./SoftVTBench_data",
allow_patterns=[
"object-soft/**",
"spatial-soft/**",
"object-rigid/**",
"spatial-rigid/**",
],
)
```
Selective download for object-soft training data:
```bash
huggingface-cli download Arthur12137/SoftVTBench --repo-type dataset \
--include 'object-soft/*' \
--local-dir ./SoftVTBench_data
```
## Contents
| Folder | Role | Contents |
| --- | --- | --- |
| `object-soft/` | train/eval | 10 object-centric deformable tasks × 50 demonstrations |
| `spatial-soft/` | train/eval | 10 spatial deformable tasks × 50 demonstrations |
| `object-rigid/` | train/eval | matched rigid LIBERO-object baseline |
| `spatial-rigid/` | train/eval | matched rigid LIBERO-spatial baseline |
| `eval-assets/` | eval | USD scene/deformable assets required to reconstruct closed-loop scenes |
| `soft-assets/` | authoring | source asset bundle; not needed by the public evaluator |
Soft suites use nested task directories:
```text
object-soft/libero_object/libero_object_task0/{replayed_demos,video_datasets}
spatial-soft/libero_spatial/libero_spatial_task0/{replayed_demos,video_datasets}
```
Rigid suites use top-level `replayed_demos/` and `video_datasets/`. Each soft
suite has one canonical 500-row `manifest.jsonl` whose HDF5/video paths are
relative to the suite root. The current rigid folders do not contain manifest
files. Detailed schemas live in the code repository under `datasets/schemas/`.
## Supported use
The public code supports π0.5 vision-only and visuo-tactile fine-tuning plus
closed-loop evaluation. SoftVTBench v1 reports:
- Goal Success: the simulator task predicate is satisfied for the terminal
success horizon.
- Safe Success: Goal Success and peak canonical FEM deformation does not exceed
the compression-sweep threshold for that object.
No separate NoDrop number is reported. See `configs/benchmark_protocol_v1.json`
in the code repository for the machine-readable protocol.
## Limitations
- Rollouts are simulated in Isaac Sim and do not measure sim-to-real transfer.
- The safety metric uses privileged FEM state and is intended for evaluation,
not as a policy input.
- Thresholds are object-specific; results are invalid if thresholds and online
rollouts use different deformation metric IDs.
- Rigid suites report Goal Success only.
## Licensing and third-party assets
SoftVTBench-authored metadata and code do not relicense third-party scene,
texture, tactile, LIBERO, Tabero, or NVIDIA assets. Publication of this metadata
does not establish permission to redistribute `eval-assets/` or `soft-assets/`.
The maintainers must attach the applicable terms and written redistribution
permission for every file in those folders. Until that evidence is present,
do not download, mirror, or redistribute those asset folders. See
`docs/asset_licensing.md` and `THIRD_PARTY_NOTICES.md` in the code release.
## Citation
```bibtex
@article{jing2026softvtbench,
title = {SoftVTBench: A Safety-Aware Visuo-Tactile Benchmark for Physically Constrained Robotic Manipulation of Deformable Objects},
author = {Jing, Bowen and Wang, Mingxin and Hao, Ruiyang and Ge, Chenchen and Shen, Hanwen and He, Junjie and Cui, Yang and Hou, Yiming and Zhou, Weitao and Wang, Jiawei and Li, Minglei and Zhang, Dandan and Zhao, Ding and Liu, Houde and Li, Xiaofan and Liu, Si and Luo, Ping and Yu, Haibao},
journal = {arXiv preprint arXiv:2607.04234},
year = {2026}
}
```
</details>
|