Add robotics task category, project links and data download instructions
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,10 +1,44 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
-
## Paper
|
| 5 |
-
[arXiv:2503.03480](https://arxiv.org/abs/2503.03480)
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
```bash
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
@inproceedings{zhang25safevla,
|
| 9 |
title={SafeVLA: Towards Safety Alignment of Vision-Language-Action Model via Constrained Learning},
|
| 10 |
author={Borong Zhang and Yuhao Zhang and Jiaming Ji and Yingshan Lei and Josef Dai and Yuanpei Chen and Yaodong Yang},
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
---
|
|
|
|
|
|
|
| 6 |
|
| 7 |
+
# SafeVLA Dataset
|
| 8 |
+
|
| 9 |
+
This repository contains the data and assets for the paper [SafeVLA: Towards Safety Alignment of Vision-Language-Action Model via Constrained Learning](https://arxiv.org/abs/2503.03480), accepted at NeurIPS 2025 (Spotlight).
|
| 10 |
+
|
| 11 |
+
[Project Page](https://pku-safevla.github.io) | [GitHub Repository](https://github.com/PKU-Alignment/SafeVLA)
|
| 12 |
+
|
| 13 |
+
## Dataset Description
|
| 14 |
+
SafeVLA provides a framework and data for safety alignment in Vision-Language-Action (VLA) models. The dataset includes:
|
| 15 |
+
- **Optimized Objaverse assets**: Annotations and 3D assets.
|
| 16 |
+
- **ProcTHOR-Objaverse houses**: Procedurally generated environments for robot training and evaluation.
|
| 17 |
+
- **Training Data**: Imitation Learning (IL) data for tasks such as Fetch, Pickup, and Object Navigation.
|
| 18 |
+
|
| 19 |
+
## Sample Usage
|
| 20 |
+
|
| 21 |
+
To download the different components of the dataset, you can use the scripts provided in the [official repository](https://github.com/PKU-Alignment/SafeVLA):
|
| 22 |
+
|
| 23 |
+
### 1. Downloading Objaverse assets and annotations
|
| 24 |
```bash
|
| 25 |
+
python -m objathor.dataset.download_annotations --version 2023_07_28 --path /path/to/objaverse_assets
|
| 26 |
+
python -m objathor.dataset.download_assets --version 2023_07_28 --path /path/to/objaverse_assets
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
### 2. Downloading ProcTHOR-Objaverse houses
|
| 30 |
+
```bash
|
| 31 |
+
python -m scripts.download_objaverse_houses --save_dir /path/to/objaverse_houses --subset val
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
### 3. Downloading training data
|
| 35 |
+
```bash
|
| 36 |
+
# TASK_TYPES can be: FetchType | PickupType | ObjectNavType
|
| 37 |
+
python -m scripts.download_training_data --save_dir /path/to/training_data --task_types TASK_TYPES
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
## Citation
|
| 41 |
+
```bibtex
|
| 42 |
@inproceedings{zhang25safevla,
|
| 43 |
title={SafeVLA: Towards Safety Alignment of Vision-Language-Action Model via Constrained Learning},
|
| 44 |
author={Borong Zhang and Yuhao Zhang and Jiaming Ji and Yingshan Lei and Josef Dai and Yuanpei Chen and Yaodong Yang},
|