Add model card and metadata

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ pipeline_tag: image-text-to-text
4
+ base_model: Qwen/Qwen3-4B-Instruct-2507
5
+ ---
6
+
7
+ # EMBGuard
8
+
9
+ EMBGuard is the first MLLM-based safety guardrail for embodied agents designed to decouple physical risk reasoning from agent policy. By evaluating a (visual observation, action) pair, EMBGuard identifies hazardous configurations and provides natural language explanations of potential risks.
10
+
11
+ - **Paper:** [EMBGuard: Constructing Hazard-Aware Guardrails for Safe Planning in Embodied Agents](https://huggingface.co/papers/2605.30924)
12
+ - **Repository:** [https://github.com/dongwxxkchoi/EMBGuard](https://github.com/dongwxxkchoi/EMBGuard)
13
+
14
+ ## Model Description
15
+ MLLM-powered embodied agents deployed in real-world environments encounter physical hazards. However, existing approaches lack explicit mechanisms for identifying hazards and reasoning about action-conditioned risks, leading agents to either miss risky interactions or over-identify risks.
16
+
17
+ EMBGuard identifies hazardous configurations across seven physical risk categories and provides natural language explanations of potential risks. Despite its compact size, EMBGuard achieves performance competitive with proprietary MLLMs (e.g., GPT-5.1, Gemini-2.5-Pro) while significantly reducing false-positive rates, making it suitable for real-time deployment in safety-critical planning.
18
+
19
+ The model was trained on **EMBHazard**, a dataset of 15.1K action-conditioned pairs, and evaluated on **EMBGuardTest**, a benchmark of 329 manually curated real-world scenarios.
20
+
21
+ ## Usage
22
+ For detailed instructions on installation, training, and evaluation, please refer to the [official GitHub repository](https://github.com/dongwxxkchoi/EMBGuard).
23
+
24
+ ## Citation
25
+ If you use EMBGuard in your research, please cite:
26
+
27
+ ```bibtex
28
+ @article{choi2024embguard,
29
+ title={EMBGuard: Constructing Hazard-Aware Guardrails for Safe Planning in Embodied Agents},
30
+ author={Choi, Dongwook and others},
31
+ journal={arXiv preprint arXiv:2605.30924},
32
+ year={2024}
33
+ }
34
+ ```