[Benchmark] Add Spatial-DISE benchmark#1542
Open
shinmohuang wants to merge 4 commits into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds Spatial-DISE, an ICLR 2026 spatial reasoning benchmark, to VLMEvalKit.
Spatial-DISE evaluates VLMs on 2D and 3D spatial reasoning tasks, including rotation, folding, projection, shape finding, and compositional reasoning. The default dataset entry follows the official benchmark split:
Supported entries:
Spatial-DISESpatial-DISE_BENCHAdditional reusable dataset splits are also exposed:
Spatial-DISE_TRAINSpatial-DISE_VALSpatial-DISE_TESTImplementation
This PR follows the VLMEvalKit benchmark contribution pattern by adding a dataset class with:
build_prompt(self, line)evaluate(self, eval_file, **judge_kwargs)The implementation:
vlmeval/dataset/spatial_dise.pySpatialDISEinvlmeval/dataset/__init__.pyTACPS-liv/Spatial-DISESPATIAL_DISE_ROOT=/path/to/Spatial-DISEimages/...to tar members by removing theimages/prefixcategorydifficultydise_categoryWhy This Format
Spatial-DISE is distributed on Hugging Face with CSV metadata and tar-sharded images. Instead of embedding images into a large TSV/base64 file, this PR keeps the official dataset layout and provides a VLMEvalKit-compatible loader that handles tar-shard image access transparently.
Users can run the benchmark directly through the standard VLMEvalKit interface:
Validation
Validated locally with:
Smoke test with:
confirmed that:
Spatial-DISEloads 559 official benchmark examples