Add dataset card, paper link, and robotics metadata
Browse filesHi, I'm Niels from the community science team at Hugging Face. This PR adds a dataset card for the Tabero benchmark, including a link to the paper and GitHub repository, as well as metadata for the robotics task. It also includes sample usage instructions for downloading the data as found in the official repository.
README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- robotics
|
| 4 |
+
tags:
|
| 5 |
+
- tactile-sensing
|
| 6 |
+
- vision-language-action
|
| 7 |
+
- vla
|
| 8 |
+
- force-feedback
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Tabero: Learning Gentle Manipulation with Closed-Loop Force Feedback from Vision, Touch, and Language
|
| 12 |
+
|
| 13 |
+
[Paper](https://huggingface.co/papers/2605.27886) | [GitHub](https://github.com/NathanWu7/Tabero)
|
| 14 |
+
|
| 15 |
+
Tabero is a benchmark and model suite for gentle, language-conditioned robotic manipulation that demands fine-grained contact force perception. It addresses the scarcity of tactile data by presenting a data-efficient pipeline that repurposes open-source robot manipulation trajectories to generate diverse vision-tactile-language tasks.
|
| 16 |
+
|
| 17 |
+
The benchmark establishes a multidimensional evaluation protocol that measures task success alongside physical interaction quality, specifically targeting scenarios that require closed-loop force feedback.
|
| 18 |
+
|
| 19 |
+
## Dataset Summary
|
| 20 |
+
- **Tasks**: Gentle manipulation tasks (e.g., connector insertion, assembly) requiring contact force perception.
|
| 21 |
+
- **Modality**: Vision (RGB, wrist camera), Touch (GelSight-based tactile or ContactForce), and Language.
|
| 22 |
+
- **Format**: Data is available in HDF5/video formats, with support for LeRobot and OpenPI formats.
|
| 23 |
+
|
| 24 |
+
## Sample Usage
|
| 25 |
+
|
| 26 |
+
### Download Dataset
|
| 27 |
+
You can download the associated data using the Hugging Face CLI:
|
| 28 |
+
|
| 29 |
+
```bash
|
| 30 |
+
# Download the LIBERO data
|
| 31 |
+
huggingface-cli download NathanWu7/Isaaclab_Libero \
|
| 32 |
+
--repo-type dataset \
|
| 33 |
+
--local-dir /path/to/Isaaclab_Libero
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
### Tactile Calibration Assets
|
| 37 |
+
When using tactile environments, you can download the calibration assets:
|
| 38 |
+
|
| 39 |
+
```bash
|
| 40 |
+
huggingface-cli download china-sae-robotics/Tactile_Manipulation_Dataset \
|
| 41 |
+
--repo-type dataset \
|
| 42 |
+
--local-dir /path/to/Tactile_manipulation_dataset
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
## Environment IDs
|
| 46 |
+
The following environment IDs are associated with the benchmark:
|
| 47 |
+
- `Isaac-Libero-Franka-Replay-Camera-ContactForce-v0`: replay with contact-force observations.
|
| 48 |
+
- `Isaac-Libero-Franka-Hybrid-ContactForce-v0`: hybrid force-position control with contact force.
|
| 49 |
+
- `Isaac-Libero-Franka-Replay-Camera-Tactile-v0`: replay with GelSight tactile sensors.
|
| 50 |
+
- `Isaac-Libero-Franka-Hybrid-Tactile-v0`: hybrid tactile environment.
|
| 51 |
+
|
| 52 |
+
## Citation
|
| 53 |
+
```bibtex
|
| 54 |
+
@article{tabero2024,
|
| 55 |
+
title={Tabero: Learning Gentle Manipulation with Closed-Loop Force Feedback from Vision, Touch, and Language},
|
| 56 |
+
author={Wu, Nathan and others},
|
| 57 |
+
journal={arXiv preprint arXiv:2605.27886},
|
| 58 |
+
year={2024}
|
| 59 |
+
}
|
| 60 |
+
```
|