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.
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.3-Qwen3-VL-8B
1python example.py \
2 --image_paths examples/Q1_1.png \
3 --question "Consider the real-world 3D locations of the objects. Which is closer to the sink, the toilet paper or the towel?\nOptions: \nA. toilet paper\nB. towel\nGive me the answer letter directly. The best answer is:" \
4 --model_path sensenova/SenseNova-SI-1.3-Qwen3-VL-8B
5# --model_path sensenova/SenseNova-SI-1.3-InternVL3-8B
1python example.py \
2 --image_paths examples/Q2_1.png examples/Q2_2.png \
3 --question "If the landscape painting is on the east side of the bedroom, where is the window located in the bedroom?\nOptions: A. North side, B. South side, C. West side, D. East side\nAnswer with the option's letter from the given choices directly. Enclose the option's letter within ``." \
4 --model_path sensenova/SenseNova-SI-1.3-Qwen3-VL-8B
5# --model_path sensenova/SenseNova-SI-1.3-InternVL3-8B
This example is from
MMSI-Bench and tests the model on open-ended short-answer questions:
1python example.py \
2 --image_paths examples/Q3_1.png examples/Q3_2.png examples/Q3_3.png \
3 --question "The robot is making tea. What is the order in which the pictures were taken?" \
4 --model_path sensenova/SenseNova-SI-1.3-Qwen3-VL-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.3-Qwen3-VL-8B
4# --model_path Qwen/Qwen3-VL-8B-Instruct
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}