File size: 6,137 Bytes
29fc6ad
92cc2e3
 
29fc6ad
 
 
 
92cc2e3
 
29fc6ad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92cc2e3
 
29fc6ad
 
104c6d0
29fc6ad
104c6d0
29fc6ad
92cc2e3
29fc6ad
104c6d0
 
 
 
92cc2e3
29fc6ad
104c6d0
29fc6ad
104c6d0
29fc6ad
104c6d0
 
 
 
 
 
 
92cc2e3
 
 
 
 
 
 
 
 
104c6d0
 
29fc6ad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104c6d0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92cc2e3
104c6d0
 
 
 
 
29fc6ad
 
92cc2e3
104c6d0
29fc6ad
 
104c6d0
92cc2e3
104c6d0
 
 
 
 
 
 
 
 
 
29fc6ad
 
 
 
92cc2e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
---
base_model:
- Qwen/Qwen3-VL-8B-Instruct
language:
- en
- zh
library_name: transformers
license: apache-2.0
pipeline_tag: robotics
tags:
- embodied-ai
- vision-language-model
- embodied-reasoning
- spatial-reasoning
- pointing
- vla
- qwen3-vl
---

# Embodied-R1.5: Evolving Physical Intelligence via Embodied Foundation Models

<p align="center">
  🌐 <a href="https://embodied-r.github.io/">Project Page</a> &nbsp;|&nbsp;
  πŸ’» <a href="https://github.com/pickxiguapi/Embodied-R1.5">Code</a> &nbsp;|&nbsp;
  🧰 <a href="https://github.com/pickxiguapi/EmbodiedEvalKit">EmbodiedEvalKit</a> &nbsp;|&nbsp;
  πŸ€— <a href="https://huggingface.co/collections/IffYuan/embodied-r15">Models & Datasets</a> &nbsp;|&nbsp;
  πŸ“„ <a href="https://huggingface.co/papers/2606.11324">Paper</a>
</p>

> *"Reasoning initiates the action; Action fulfills the reasoning."* β€” Wang Yangming (1509)

## Overview

**Embodied-R1.5** is a unified **Embodied Foundation Model (EFM)**, built on **Qwen3-VL-8B-Instruct**, that integrates comprehensive embodied reasoning within a single architecture. Building on [Embodied-R1](https://github.com/pickxiguapi/Embodied-R1), it leaps from a pointing specialist to a comprehensive EFM unifying **three core capabilities**:

- **Spatial cognition & reasoning** β€” comprehend the semantic and spatial structure of the physical world, including static geometric relations and dynamic interaction possibilities.
- **Task planning & correction** β€” cover the full task life cycle: long-horizon decomposition, next-step planning, process detection, error localization, and correction.
- **Embodied pointing & location** β€” ground high-level reasoning in coordinates and trajectories, covering referring expression grounding, region-level localization, functional (affordance) grounding, and visual trace generation.

Trained on a 15B-token corpus with a multi-task balanced RL recipe, it further drives a **Planner-Grounder-Corrector (PGC)** closed-loop framework where one model acts as planner, grounder, and corrector to autonomously complete long-horizon real-world tasks.

## Output Conventions

Embodied-R1.5 follows the Qwen3-VL chat format and outputs structured answers inside `<answer>...</answer>` tags. The supported task types and their answer formats are:

| Task Type | Answer Format (inside `<answer>`) |
|-----------|-----------------------------------|
| `multiple choice` | `A` |
| `numerical` | `3.14` |
| `open-ended` | free text |
| `math` | `$$-\dfrac{3}{2}$$` |
| `spatial grounding` | `{"boxes": [35, 227, 437, 932]}` |
| `point` | ` ```json
[{"point_2d": [230, 138]}]
``` ` |
| `trace` | ` ```json
[{"point_2d": [624, 469]}, ...]
``` ` |
| `trace_3d` | ` ```json
[{"point_2d": [463, 599], "depth": 1.08}, ...]
``` ` |

> **Coordinate & unit conventions.** All points (`point_2d`) and boxes are normalized to the `[0, 1000]` range, regardless of the original image resolution. For `trace_3d`, the `depth` value is in meters.

## Quick Start

```python
from transformers import AutoModelForImageTextToText, AutoProcessor
from PIL import Image

model_id = "IffYuan/Embodied-R1.5"
model = AutoModelForImageTextToText.from_pretrained(
    model_id, torch_dtype="auto", device_map="auto"
)
processor = AutoProcessor.from_pretrained(model_id)

image = Image.open("scene.jpg")
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image"},
            {"type": "text", "text": "You are a robot performing manipulation tasks. "
                                     "The task instruction is: move the blue cube on top of the yellow cube. "
                                     "Use 2D points to mark the target location."},
        ],
    }
]

text = processor.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = processor(text=[text], images=[image], return_tensors="pt").to(model.device)
out = model.generate(**inputs, max_new_tokens=512)
print(processor.batch_decode(out, skip_special_tokens=True)[0])
```

The model reasons over the visual observation and emits its final decision within an `<answer>` tag, e.g. `<answer>[{"point_2d": [750, 748]}]</answer>`.

## Inference with vLLM (Recommended)

For higher throughput, serve the model with vLLM:

```bash
vllm serve IffYuan/Embodied-R1.5 \
  --served-model-name "Embodied-R1.5" \
  --tensor-parallel-size 1 \
  --mm-encoder-tp-mode data \
  --gpu-memory-utilization 0.7 \
  --async-scheduling \
  --media-io-kwargs '{"video": {"num_frames": 32}, "image": {"max_num": 32}}' \
  --max_model_len 20000 \
  --limit-mm-per-prompt '{"image": 8, "video": 1}' \
  --host 0.0.0.0 --port 22002
```

## Evaluation

For benchmark evaluation, see [EmbodiedEvalKit](https://github.com/pickxiguapi/EmbodiedEvalKit), an evaluation framework covering 25+ embodied benchmarks.

## Training & Data

Embodied-R1.5 is trained in two stages: SFT (LLaMA-Factory) followed by RFT (EasyR1). Full training scripts are available in the [GitHub repository](https://github.com/pickxiguapi/Embodied-R1.5). Datasets are released in the [Embodied-R1.5 HuggingFace collection](https://huggingface.co/collections/IffYuan/embodied-r15).

## Citation

If you find Embodied-R1.5 useful in your research, please cite:

```bibtex
@article{yuan2026embodiedr15,
  title={Embodied-R1.5: Evolving Physical Intelligence via Embodied Foundation Models},
  author={Yuan, Yifu and Huang, Yaoting and Yao, Xianze and Li, Yutong and Zhang, Shuoheng and Han, Linqi and Li, Pengyi and Sun, Jiangeng and Jia, Wenting and Zhao Zhang and Liu, Yuhao and Liao, Ruihao and Hu, Yucheng and Wu, Qiyu and Li, Yuxiao and Dong, Zibin and Ni, Fei and Zheng, Yan and Gu, Shuyang and Ma, Yi and Tang, Hongyao and Hu, Han and Hao, Jianye},
  journal={arXiv preprint},
  year={2026}
}

@article{yuan2025embodied,
  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 Hao, Jianye},
  journal={ICLR 2026},
  year={2025}
}
```

## License

Released under the Apache 2.0 license.