Despite remarkable progress, multimodal foundation models still exhibit surprising deficiencies in spatial intelligence.
In this work, we explore scaling up multimodal foundation models to cultivate spatial intelligence within the SenseNova-SI family,
built upon established multimodal foundations including visual understanding models (i.e., Qwen3-VL and InternVL3) and unified understanding and generation models (i.e., Bagel).
We take a principled approach to constructing high-performing and robust spatial intelligence by systematically curating SenseNova-SI-8M:
eight million diverse data samples under a rigorous taxonomy of spatial capabilities.
SenseNova-SI demonstrates unprecedented performance across a broad range of spatial intelligence benchmarks, while maintaining strong general multimodal understanding.
More importantly, we analyze the impact of data scaling, discuss early signs of emergent generalization capabilities enabled by diverse data training,
analyze the risk of overfitting and language shortcuts, present a preliminary study on spatial chain-of-thought reasoning, and validate the potential downstream application. SenseNova-SI is an ongoing project, and this report will be updated continuously.
All newly trained multimodal foundation models are publicly released to facilitate further research in this direction.
In the future, SenseNova-SI will be integrated with larger-scale in-house models.
Currently, we build SenseNova-SI upon popular open-source foundation models to maximize compatibility with existing research pipelines.
In this release, we present
SenseNova-SI-1.2-InternVL3-8B,
SenseNova-SI-1.1-Qwen2.5-VL-3B,
SenseNova-SI-1.1-Qwen2.5-VL-7B, and
SenseNova-SI-1.1-Qwen3-VL-8B, of which
SenseNova-SI-1.2-InternVL3-8B achieve state-of-the-art performance among open-source models of comparable size across eight recent spatial intelligence benchmarks:
VSI,
MMSI,
MindCube,
ViewSpatial,
SITE,
BLINK,
3DSRBench,
EmbSpatial-Bench.
We recommend using
uv to manage the environment.
1git clone git@github.com:OpenSenseNova/SenseNova-SI.git
2cd SenseNova-SI/
3uv sync --extra cu124 # or one of [cu118|cu121|cu124|cu126|cu128|cu129], depending on your CUDA version
4uv sync
5source .venv/bin/activate
A simple image-free test to verify environment setup and download the model.
1python example.py \
2 --question "Hello" \
3 --model_path sensenova/SenseNova-SI-1.2-InternVL3-8B
1python example.py \
2 --image_paths examples/Q1_1.png examples/Q1_2.png \
3 --question "<image><image>
4You are standing in front of the dice pattern and observing it. Where is the desk lamp approximately located relative to you?
5Options: A: 90 degrees counterclockwise, B: 90 degrees clockwise, C: 135 degrees counterclockwise, D: 135 degrees clockwise" \
6 --model_path sensenova/SenseNova-SI-1.2-InternVL3-8B
7# --model_path OpenGVLab/InternVL3-8B
1python example.py \
2 --image_paths examples/Q2_1.png examples/Q2_2.png \
3 --question "<image><image>
4Based on these two views showing the same scene: in which direction did I move from the first view to the second view?
5A. Directly left B. Directly right C. Diagonally forward and right D. Diagonally forward and left" \
6 --model_path sensenova/SenseNova-SI-1.2-InternVL3-8B
7# --model_path OpenGVLab/InternVL3-8B
Prepare a file similar to
examples/examples.jsonl, where each line represents a single question.
The model is loaded once and processes questions sequentially. The questions remain independent of each other.
1python example.py \
2 --jsonl_path examples/examples.jsonl \
3 --model_path sensenova/SenseNova-SI-1.2-InternVL3-8B
4# --model_path OpenGVLab/InternVL3-8B
To reproduce the benchmark results above, please refer to
EASI to evaluate SenseNova-SI on mainstream spatial intelligence benchmarks.
1@InProceedings{sensenova-si,
2 title = {Scaling Spatial Intelligence with Multimodal Foundation Models},
3 author = {Cai, Zhongang and Wang, Ruisi and Gu, Chenyang and Pu, Fanyi and Xu, Junxiang and Wang, Yubo and Yin, Wanqi and Yang, Zhitao and Wei, Chen and Sun, Qingping and Zhou, Tongxi and Li, Jiaqi and Pang, Hui En and Qian, Oscar and Wei, Yukun and Lin, Zhiqian and Shi, Xuanke and Deng, Kewang and Han, Xiaoyang and Chen, Zukai and Fan, Xiangyu and Deng, Hanming and Lu, Lewei and Pan, Liang and Li, Bo and Liu, Ziwei and Wang, Quan and Lin, Dahua and Yang, Lei},
4 booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
5 year = {2026}
6}