This repository contains the dataset for the paper SpaCE-10: A Comprehensive Benchmark for Multimodal Large Language Models in Compositional Spatial Intelligence.
2
27 commits
2 linked in READMEs
updated Aug 2, 2025
This repository contains the dataset for the paper SpaCE-10: A Comprehensive Benchmark for Multimodal Large Language Models in Compositional Spatial Intelligence.
SpaCE-10: A Comprehensive Benchmark for Multimodal Large Language Models in Compositional Spatial IntelligenceGitHub Repository: https://github.com/Cuzyoung/SpaCE-10
SpaCE-10 is a compositional spatial intelligence benchmark for evaluating Multimodal Large Language Models (MLLMs) in indoor environments. Our contribution as follows:
🎉 LLaVA-OneVision-72B achieves the Rank 1 in all tested models.
🎉 GPT-4o achieves the best score in tested Close-Source models.
A large gap still exists between human and models in compositional spatial intelligence.
The evaluation of SpaCE-10 is based on lmms-eval. Thus, we follow the environment settings of lmms-eval.
git clone https://github.com/Cuzyoung/SpaCE-10.git
cd SpaCE-10
uv venv dev --python=3.10
source dev/bin/activate
uv pip install -e .
Take InternVL2.5-8B as an example:
cd lmms-eval/run_bash
bash internvl2.5-8b.sh
Notably, each time we test a new model, the corresponding environment of this model needs to be installed.
You can load the dataset using the Hugging Face datasets library:
from datasets import load_dataset
dataset = load_dataset("Cusyoung/SpaCE-10")
# To explore the dataset splits:
print(dataset)
# Example of accessing a split (assuming a 'train' split exists):
# train_split = dataset["train"]
# print(train_split[0])
If you use this dataset, please cite the original paper:
@article{gong2025space10,
title={SpaCE-10: A Comprehensive Benchmark for Multimodal Large Language Models in Compositional Spatial Intelligence},
author={Ziyang Gong, Wenhao Li, Oliver Ma, Songyuan Li, Jiayi Ji, Xue Yang, Gen Luo, Junchi Yan, Rongrong Ji},
journal={arXiv preprint arXiv:2506.07966},
year={2025}
}
This repository contains the dataset for the paper SpaCE-10: A Comprehensive Benchmark for Multimodal Large Language Models in Compositional Spatial Intelligence.
2
27 commits
2 linked in READMEs
updated Aug 2, 2025
This repository contains the dataset for the paper SpaCE-10: A Comprehensive Benchmark for Multimodal Large Language Models in Compositional Spatial Intelligence.
SpaCE-10: A Comprehensive Benchmark for Multimodal Large Language Models in Compositional Spatial IntelligenceGitHub Repository: https://github.com/Cuzyoung/SpaCE-10
SpaCE-10 is a compositional spatial intelligence benchmark for evaluating Multimodal Large Language Models (MLLMs) in indoor environments. Our contribution as follows:
🎉 LLaVA-OneVision-72B achieves the Rank 1 in all tested models.
🎉 GPT-4o achieves the best score in tested Close-Source models.
A large gap still exists between human and models in compositional spatial intelligence.
The evaluation of SpaCE-10 is based on lmms-eval. Thus, we follow the environment settings of lmms-eval.
git clone https://github.com/Cuzyoung/SpaCE-10.git
cd SpaCE-10
uv venv dev --python=3.10
source dev/bin/activate
uv pip install -e .
Take InternVL2.5-8B as an example:
cd lmms-eval/run_bash
bash internvl2.5-8b.sh
Notably, each time we test a new model, the corresponding environment of this model needs to be installed.
You can load the dataset using the Hugging Face datasets library:
from datasets import load_dataset
dataset = load_dataset("Cusyoung/SpaCE-10")
# To explore the dataset splits:
print(dataset)
# Example of accessing a split (assuming a 'train' split exists):
# train_split = dataset["train"]
# print(train_split[0])
If you use this dataset, please cite the original paper:
@article{gong2025space10,
title={SpaCE-10: A Comprehensive Benchmark for Multimodal Large Language Models in Compositional Spatial Intelligence},
author={Ziyang Gong, Wenhao Li, Oliver Ma, Songyuan Li, Jiayi Ji, Xue Yang, Gen Luo, Junchi Yan, Rongrong Ji},
journal={arXiv preprint arXiv:2506.07966},
year={2025}
}