CoolFace
Modelpublic

IffYuan/Embodied-R1-3B-v1

sourceHugging Faceotherupdated 7mo agoView on Hugging Face
1likes77downloads
Model Card

Embodied-R1-3B-v1

Embodied-R1: Reinforced Embodied Reasoning for General Robotic Manipulation (ICLR 2026)

[๐ŸŒ Project Website] [๐Ÿ“„ Paper] [๐Ÿ† ICLR2026 Version] [๐ŸŽฏ Dataset] [๐Ÿ“ฆ Code]


Model Details

Model Description

Embodied-R1 is a 3B vision-language model (VLM) for general robotic manipulation. It introduces a Pointing mechanism and uses Reinforced Fine-tuning (RFT) to bridge perception and action, with strong zero-shot generalization in embodied tasks.

Embodied-R1 Framework Figure: Embodied-R1 framework, performance overview, and zero-shot manipulation demos.

Model Sources

  • โ€”Repository: https://github.com/pickxiguapi/Embodied-R1
  • โ€”Paper: http://arxiv.org/abs/2508.13998
  • โ€”OpenReview: https://openreview.net/forum?id=i5wlozMFsQ

Updates

  • โ€”[2026-03] VABench-P / VABench-V released: VABench-P, VABench-V
  • โ€”[2026-03-03] Embodied-R1 dataset released: https://huggingface.co/datasets/IffYuan/Embodied-R1-Dataset
  • โ€”[2026-01-27] Accepted by ICLR 2026
  • โ€”[2025-08-22] Embodied-R1-3B-v1 checkpoint released

Intended Uses

Direct Use

This model is intended for research and benchmarking in embodied reasoning and robotic manipulation tasks, including:

  • โ€”Visual target grounding (VTG)
  • โ€”Referring region grounding (RRG/REG-style tasks)
  • โ€”Open-form grounding (OFG)

Out-of-Scope Use

  • โ€”Safety-critical real-world deployment without additional safeguards and validation
  • โ€”Decision-making in high-risk domains
  • โ€”Any use requiring guaranteed robustness under distribution shift

How to Use

Setup

bash
git clone https://github.com/pickxiguapi/Embodied-R1.git
cd Embodied-R1

conda create -n embodied_r1 python=3.11 -y
conda activate embodied_r1

pip install transformers==4.51.3 accelerate
pip install qwen-vl-utils[decord]

Inference

bash
python inference_example.py

Example Tasks

  • โ€”VTG: put the red block on top of the yellow block
  • โ€”RRG: put pepper in pan
  • โ€”REG: bring me the camel model
  • โ€”OFG: loosening stuck bolts

(Visualization examples are available in the project repo: assets/)


Evaluation

bash
cd eval
python hf_inference_where2place.py
python hf_inference_vabench_point.py
...

Related benchmarks:


Training

Training scripts are available at: https://github.com/pickxiguapi/Embodied-R1/tree/main/scripts

bash
# Stage 1 training
bash scripts/stage_1_embodied_r1.sh

# Stage 2 training
bash scripts/stage_2_embodied_r1.sh

Key files:

  • โ€”scripts/config_stage1.yaml
  • โ€”scripts/config_stage2.yaml
  • โ€”scripts/stage_1_embodied_r1.sh
  • โ€”scripts/stage_2_embodied_r1.sh
  • โ€”scripts/model_merger.py (checkpoint merging + HF export)

Limitations

  • โ€”Performance may vary across environments, camera viewpoints, and unseen object domains.
  • โ€”Outputs are generated from visual-language reasoning and may include localization/action errors.
  • โ€”Additional system-level constraints (calibration, motion planning, safety checks) are required for real robot deployment.

Citation

bibtex
@article{yuan2026embodied,
  title={Embodied-r1: Reinforced embodied reasoning for general robotic manipulation},
  author={Yuan, Yifu and Cui, Haiqin and Huang, Yaoting and Chen, Yibin and Ni, Fei and Dong, Zibin and Li, Pengyi and Zheng, Yan and Tang, Hongyao and Hao, Jianye},
  journal={The Fourteenth International Conference on Learning Representations},
  year={2026}
}

@article{yuan2026seeing,
  title={From seeing to doing: Bridging reasoning and decision for robotic manipulation},
  author={Yuan, Yifu and Cui, Haiqin and Chen, Yibin and Dong, Zibin and Ni, Fei and Kou, Longxin and Liu, Jinyi and Li, Pengyi and Zheng, Yan and Hao, Jianye},
  journal={The Fourteenth International Conference on Learning Representations},
  year={2026}
}

Acknowledgements

If this model or resources are useful for your research, please consider citing our work and starring the repository.