File size: 2,812 Bytes
06cca77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bf22522
 
 
 
 
06cca77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bf22522
 
 
 
 
 
 
06cca77
 
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
---
license: apache-2.0
library_name: transformers
pipeline_tag: image-text-to-text
base_model: OpenGVLab/InternVL3_5-8B
tags:
- multimodal
- vision-language
- spatial-reasoning
- spatiolm
---

# SpatioLM-Understanding-InternVL3.5

This is the official **SpatioLM Understanding** checkpoint based on
**InternVL3.5 (8B)**. It is intended for spatial reasoning and scene understanding.

SpatioLM adds a plug-and-play spatio-vision module to a frozen vision-language
model and learns physically coherent representations from pseudo depth and
camera-ray supervision. No additional 3D input is required at inference time.

## Resources

- GitHub: https://github.com/xiaomi-research/spatio-lm
- Paper: https://arxiv.org/abs/2608.01899

## Installation

```bash
git clone https://github.com/xiaomi-research/spatio-lm.git
cd spatio-lm
pip install -e .
```

## Image inference

```python
import torch
from lmms_eval.models.simple.internvl2 import load_image
from PIL import Image
from transformers import AutoTokenizer

from spatiolm.models import InternVL3RChatModel

checkpoint = "xiaomi-research/SpatioLM-Understanding-InternVL3.5"
image = Image.open("/path/to/image.jpg").convert("RGB")

model = InternVL3RChatModel.from_pretrained(
    checkpoint,
    dtype=torch.bfloat16,
    low_cpu_mem_usage=True,
).eval().cuda()
tokenizer = AutoTokenizer.from_pretrained(
    checkpoint,
    trust_remote_code=True,
    use_fast=False,
)
pixel_values = load_image(image, input_size=448).to(
    device="cuda",
    dtype=torch.bfloat16,
)
answer = model.chat(
    tokenizer,
    pixel_values,
    "Which object is closer to the camera?",
    {"max_new_tokens": 128, "do_sample": False},
)
print(answer)
```

For video inference, benchmark evaluation, training details, and the Action
checkpoint interface, see the
[SpatioLM repository](https://github.com/xiaomi-research/spatio-lm).

## Intended use and limitations

- This checkpoint is intended for research on physical spatial intelligence.
- Outputs can be inaccurate and should not be used as the sole signal in
  safety-critical or high-impact decisions.
- Performance can vary with image quality, viewpoint, scene domain, prompting,
  and video sampling strategy.
- The custom SpatioLM model implementation is required; loading with only stock
  Transformers auto classes is not supported.

## Citation

```bibtex
@inproceedings{wu2026spatiolm,
  title={SpatioLM: Towards General Physical Spatial Intelligence in Vision-Language Models},
  author={Wu, Jing and Wu, Jianhua and Guan, Jiayi and Chen, Jiahong and Lu, Jinghui and Ye, Hangjun and Gao, Bingzhao and Chen, Long},
  booktitle={International Conference on Machine Learning (ICML)},
  year={2026},
  note={To appear},
  eprint={2608.01899},
  archivePrefix={arXiv},
  url={https://arxiv.org/abs/2608.01899}
}
```