Datasets:
Improve dataset card: Add paper/code links, description, sample usage, citation, and language tag
#2
by
nielsr
HF Staff
- opened
README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
| 2 |
license: apache-2.0
|
| 3 |
task_categories:
|
| 4 |
- robotics
|
|
|
|
|
|
|
| 5 |
tags:
|
| 6 |
- LeRobot
|
| 7 |
configs:
|
|
@@ -13,10 +15,11 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
|
|
| 13 |
|
| 14 |
## Dataset Description
|
| 15 |
|
|
|
|
| 16 |
|
| 17 |
-
|
| 18 |
-
- **
|
| 19 |
-
- **
|
| 20 |
- **License:** apache-2.0
|
| 21 |
|
| 22 |
## Dataset Structure
|
|
@@ -159,11 +162,54 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
|
|
| 159 |
}
|
| 160 |
```
|
| 161 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 162 |
|
| 163 |
## Citation
|
| 164 |
|
| 165 |
**BibTeX:**
|
| 166 |
|
| 167 |
```bibtex
|
| 168 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 169 |
```
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
task_categories:
|
| 4 |
- robotics
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
tags:
|
| 8 |
- LeRobot
|
| 9 |
configs:
|
|
|
|
| 15 |
|
| 16 |
## Dataset Description
|
| 17 |
|
| 18 |
+
This dataset provides the robotic trajectories and observations used in the paper [VITA: Vision-to-Action Flow Matching Policy](https://huggingface.co/papers/2507.13231). VITA introduces a noise-free and conditioning-free policy learning framework that directly maps visual representations to latent actions using flow matching, enabling faster inference for robotic manipulation tasks. The datasets are built on [LeRobot](https://github.com/huggingface/lerobot) Hugging Face formats and optimized into offline `zarr` for faster training.
|
| 19 |
|
| 20 |
+
- **Homepage:** https://ucd-dare.github.io/VITA/
|
| 21 |
+
- **Paper:** https://huggingface.co/papers/2507.13231
|
| 22 |
+
- **Code:** https://github.com/ucd-dare/VITA
|
| 23 |
- **License:** apache-2.0
|
| 24 |
|
| 25 |
## Dataset Structure
|
|
|
|
| 162 |
}
|
| 163 |
```
|
| 164 |
|
| 165 |
+
## Sample Usage
|
| 166 |
+
|
| 167 |
+
This dataset is designed to be used with the VITA codebase, which extends [LeRobot](https://github.com/huggingface/lerobot). Below are examples for converting datasets to an optimized `zarr` format and training a VITA policy.
|
| 168 |
+
|
| 169 |
+
First, ensure the VITA repository is cloned and setup, and the `FLARE_DATASETS_DIR` environment variable is set as described in the [VITA GitHub repository](https://github.com/ucd-dare/VITA#%EF%B8%8F-setup).
|
| 170 |
+
|
| 171 |
+
### Dataset Preprocessing
|
| 172 |
+
|
| 173 |
+
To list available datasets:
|
| 174 |
+
```bash
|
| 175 |
+
cd gym-av-aloha/scripts
|
| 176 |
+
python convert.py --ls
|
| 177 |
+
```
|
| 178 |
+
|
| 179 |
+
To convert a HuggingFace dataset to an offline `zarr` format (e.g., `av_aloha_sim_hook_package`):
|
| 180 |
+
```bash
|
| 181 |
+
python convert.py -r iantc104/av_aloha_sim_hook_package
|
| 182 |
+
```
|
| 183 |
+
|
| 184 |
+
### Training a VITA Policy
|
| 185 |
+
|
| 186 |
+
Once the dataset is converted, you can train a VITA policy using the `flare` module from the VITA codebase:
|
| 187 |
+
```bash
|
| 188 |
+
python flare/train.py policy=vita task=hook_package session=test
|
| 189 |
+
```
|
| 190 |
+
You can override default configurations as needed:
|
| 191 |
+
```bash
|
| 192 |
+
# Example: Use a specific GPU
|
| 193 |
+
python flare/train.py policy=vita task=hook_package session=test device=cuda:2
|
| 194 |
+
|
| 195 |
+
# Example: Change online validation frequency and episodes
|
| 196 |
+
python flare/train.py policy=vita task=hook_package session=test \
|
| 197 |
+
val.val_online_freq=2000 val.eval_n_episodes=10
|
| 198 |
+
|
| 199 |
+
# Example: Run an ablation
|
| 200 |
+
python flare/train.py policy=vita task=hook_package session=ablate \
|
| 201 |
+
policy.vita.decode_flow_latents=False wandb.notes=ablation
|
| 202 |
+
```
|
| 203 |
|
| 204 |
## Citation
|
| 205 |
|
| 206 |
**BibTeX:**
|
| 207 |
|
| 208 |
```bibtex
|
| 209 |
+
@article{gao2025vita,
|
| 210 |
+
title={VITA: Vision-to-Action Flow Matching Policy},
|
| 211 |
+
author={Gao, Dechen and Zhao, Boqi and Lee, Andrew and Chuang, Ian and Zhou, Hanchu and Wang, Hang and Zhao, Zhe and Zhang, Junshan and Soltani, Iman},
|
| 212 |
+
journal={arXiv preprint arXiv:2507.13231},
|
| 213 |
+
year={2025}
|
| 214 |
+
}
|
| 215 |
```
|