Downloads · 30 days
14
10% of all-time downloads
IntelligenceLab/saber-attack-agent-action-inflation
saber-attack-agent-action-inflation is a robotics model from IntelligenceLab. Use it for the robotics task on the model card, and read the license before you ship it in a product. It is set up for peft. The card lists the license as bsd-3-clause.
LoRA adapter (rank 8) for Qwen/Qwen2.5-3B-Instruct, trained with GRPO to generate adversarial instruction perturbations targeting inflating action sequences (victim VLA takes unnecessarily many steps).
Downloads · 30 days
14
10% of all-time downloads
All-time downloads
146
Public
Repo size
71.4 MB
Likes
1
Public
Click a slice to open those files.
.safetensors59.9 MB · 79%
From the Hugging Face model README
LoRA adapter (rank 8) for Qwen/Qwen2.5-3B-Instruct, trained with GRPO to generate adversarial instruction perturbations targeting inflating action sequences (victim VLA takes unnecessarily many steps).
Part of the SABER framework: Paper | GitHub
| Type | LoRA adapter (adapter_model.safetensors) |
| Base model | Qwen/Qwen2.5-3B-Instruct |
| Attack objective | action_inflation |
| Training | Cold-start SFT → GRPO (step 50) on LIBERO |
| LoRA config | r=8, alpha=16, all attn + MLP projections |
| Victim VLA (training) | Pi0.5 (OpenPI) |
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-3B-Instruct", torch_dtype="bfloat16", device_map="auto")
tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-3B-Instruct")
model = PeftModel.from_pretrained(base, "IntelligenceLab/saber-attack-agent-action-inflation")
For the complete attack pipeline (ReAct tool-calling, VLA rollouts, LIBERO evaluation):
git clone https://github.com/wuxiyang1996/SABER && cd SABER && bash install.sh
python eval_attack_vla.py \
--victim openpi_pi05 \
--objective action_inflation \
--attack_gpus 2,3 --vla_gpu 0
See the GitHub repo for training, evaluation, and cross-model transfer instructions.
@misc{wu2026saber,
title={SABER: A Stealthy Agentic Black-Box Attack Framework for Vision-Language-Action Models},
author={Xiyang Wu and Guangyao Shi and Qingzi Wang and Zongxia Li and Amrit Singh Bedi and Dinesh Manocha},
year={2026},
eprint={2603.24935},
archivePrefix={arXiv},
primaryClass={cs.RO},
}
BSD 3-Clause — see https://github.com/wuxiyang1996/SABER/blob/main/LICENSE.