Add robotics task category and paper/code links

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +12 -8
README.md CHANGED
@@ -1,5 +1,8 @@
1
  ---
2
  license: mit
 
 
 
3
  tags:
4
  - robotics
5
  - reinforcement-learning
@@ -7,13 +10,15 @@ tags:
7
  - benchmark
8
  - libero
9
  - simulation
10
- pretty_name: SafeLIBERO
11
  ---
 
12
  <h1 align="center" style="font-size: 75px; font-weight: bold; margin-top: 30px;">
13
  πŸ“Š SafeLIBERO Benchmark
14
  </h1>
15
 
16
  <div align="center">
 
 
17
  <a href="https://vlsa-aegis.github.io/benchmark.html"><img src="https://img.shields.io/badge/-Detailed_Overview-3776AB?logo=readthedocs&logoColor=white" alt="Detailed Overview" height="25"></a>
18
  <a href="https://vlsa-aegis.github.io/"><img src="https://img.shields.io/badge/-Video_Demos-FF0000?logo=youtube&logoColor=white" alt="Video Demos" height="25"></a>
19
  </div>
@@ -26,7 +31,7 @@ pretty_name: SafeLIBERO
26
 
27
  ## πŸ“– Overview
28
 
29
- **SafeLIBERO** is a benchmark designed to evaluate robotic model performance in complex, safety-critical environments. It extends each LIBERO suite by selecting **four representative tasks**, with each task further divided into two scenarios varying by safety level based on obstacle interference:
30
 
31
  * **Level I**: Scenarios where the obstacle is positioned in **close proximity** to the target object.
32
  * **Level II**: Scenarios where the obstacle is located further away but **obstructs the movement path**.
@@ -61,14 +66,14 @@ Please run the following commands in order to set up the environment for **SafeL
61
  ```bash
62
  conda create -n libero python=3.8.13
63
  conda activate libero
64
- git clone [https://github.com/THU-RCSCT/vlsa-aegis.git](https://github.com/THU-RCSCT/vlsa-aegis.git)
65
  cd SafeLIBERO/safelibero
66
  pip install -r requirements.txt
67
  ```
68
 
69
 
70
  ## πŸš€ Running Evaluation
71
- ```
72
  export PYTHONPATH=$PYTHONPATH:$PWD/safelibero
73
  python main_demo.py \
74
  --task-suite-name safelibero_spatial \
@@ -101,7 +106,7 @@ for i in obstacle_names:
101
  **2. Detect Collision (Inside Loop)**
102
 
103
  Then, inside the simulation loop, check for collisions by monitoring the obstacle's displacement. If the obstacle moves significantly from its initial position, it is flagged as a collision:
104
- ```
105
  if not collide_flag:
106
  curr_pos = obs[f"{obstacle_name}_pos"]
107
  displacement = np.sum(np.abs(curr_pos - initial_obstacle_pos))
@@ -149,8 +154,7 @@ The following research works have utilized the **SafeLIBERO Benchmark** for expe
149
 
150
  | Title | Journal / Conference / Preprints | Year |
151
  |:-----:|:--------------------------------:|:----:|
152
- | VLSA: Vision-Language-Action Models with <br> Plug-and-Play Safety Constraint Layer | arXiv | 2025 |
153
- | xxx | xxx | xxx |
154
 
155
 
156
  **Add Your Work**: If you have used this benchmark in your research, please feel free to share your work with us. We are happy to include it in this list to support the research community. We sincerely appreciate the support of the research community and encourage researchers to share their publications using this benchmark. Thank you for your contributions!
@@ -160,7 +164,7 @@ If you find the project helpful for your research, please consider citing our pa
160
  ```bibtex
161
  @article{hu2025vlsa,
162
  title={VLSA: Vision-Language-Action Models with Plug-and-Play Safety Constraint Layer},
163
- author={Hu, Songqiao and Liu, Zeyi and Liu, Shuang and Cen, Jun and Meng, Zihan and He, Xiao},
164
  journal={arXiv preprint arXiv:2512.11891},
165
  year={2025}
166
  }
 
1
  ---
2
  license: mit
3
+ pretty_name: SafeLIBERO
4
+ task_categories:
5
+ - robotics
6
  tags:
7
  - robotics
8
  - reinforcement-learning
 
10
  - benchmark
11
  - libero
12
  - simulation
 
13
  ---
14
+
15
  <h1 align="center" style="font-size: 75px; font-weight: bold; margin-top: 30px;">
16
  πŸ“Š SafeLIBERO Benchmark
17
  </h1>
18
 
19
  <div align="center">
20
+ <a href="https://huggingface.co/papers/2512.11891"><img src="https://img.shields.io/badge/arXiv-Paper-red" alt="Paper" height="25"></a>
21
+ <a href="https://github.com/THU-RCSCT/vlsa-aegis"><img src="https://img.shields.io/badge/GitHub-Code-blue" alt="Code" height="25"></a>
22
  <a href="https://vlsa-aegis.github.io/benchmark.html"><img src="https://img.shields.io/badge/-Detailed_Overview-3776AB?logo=readthedocs&logoColor=white" alt="Detailed Overview" height="25"></a>
23
  <a href="https://vlsa-aegis.github.io/"><img src="https://img.shields.io/badge/-Video_Demos-FF0000?logo=youtube&logoColor=white" alt="Video Demos" height="25"></a>
24
  </div>
 
31
 
32
  ## πŸ“– Overview
33
 
34
+ **SafeLIBERO** is a benchmark designed to evaluate robotic model performance in complex, safety-critical environments, introduced in the paper [VLSA: Vision-Language-Action Models with Plug-and-Play Safety Constraint Layer](https://huggingface.co/papers/2512.11891). It extends each LIBERO suite by selecting **four representative tasks**, with each task further divided into two scenarios varying by safety level based on obstacle interference:
35
 
36
  * **Level I**: Scenarios where the obstacle is positioned in **close proximity** to the target object.
37
  * **Level II**: Scenarios where the obstacle is located further away but **obstructs the movement path**.
 
66
  ```bash
67
  conda create -n libero python=3.8.13
68
  conda activate libero
69
+ git clone https://github.com/THU-RCSCT/vlsa-aegis.git
70
  cd SafeLIBERO/safelibero
71
  pip install -r requirements.txt
72
  ```
73
 
74
 
75
  ## πŸš€ Running Evaluation
76
+ ```bash
77
  export PYTHONPATH=$PYTHONPATH:$PWD/safelibero
78
  python main_demo.py \
79
  --task-suite-name safelibero_spatial \
 
106
  **2. Detect Collision (Inside Loop)**
107
 
108
  Then, inside the simulation loop, check for collisions by monitoring the obstacle's displacement. If the obstacle moves significantly from its initial position, it is flagged as a collision:
109
+ ```python
110
  if not collide_flag:
111
  curr_pos = obs[f"{obstacle_name}_pos"]
112
  displacement = np.sum(np.abs(curr_pos - initial_obstacle_pos))
 
154
 
155
  | Title | Journal / Conference / Preprints | Year |
156
  |:-----:|:--------------------------------:|:----:|
157
+ | [VLSA: Vision-Language-Action Models with Plug-and-Play Safety Constraint Layer](https://huggingface.co/papers/2512.11891) | arXiv | 2025 |
 
158
 
159
 
160
  **Add Your Work**: If you have used this benchmark in your research, please feel free to share your work with us. We are happy to include it in this list to support the research community. We sincerely appreciate the support of the research community and encourage researchers to share their publications using this benchmark. Thank you for your contributions!
 
164
  ```bibtex
165
  @article{hu2025vlsa,
166
  title={VLSA: Vision-Language-Action Models with Plug-and-Play Safety Constraint Layer},
167
+ author={Hu, Songqiao and Liu, Zeyi and Liu, Shuang and Cen, Jun and Meng, Zihan and He, Xiao},
168
  journal={arXiv preprint arXiv:2512.11891},
169
  year={2025}
170
  }