wx91726 commited on
Commit
158f877
·
verified ·
1 Parent(s): 9a11982

Add project video and refresh dataset card

Browse files
README.md CHANGED
@@ -8,6 +8,12 @@ task_categories:
8
  - visual-question-answering
9
  - image-to-image
10
  license: other
 
 
 
 
 
 
11
  dataset_info:
12
  - config_name: default
13
  features:
@@ -47,75 +53,92 @@ configs:
47
  path: data/spatialgen_bench.jsonl
48
  ---
49
 
 
 
50
  # SpatialGen-Bench
51
 
52
- SpatialGen-Bench is a diagnostic benchmark for spatial cognition in image-generation models and text-output VLMs. The v1.1 release contains **470 samples across 14 subtasks** and four capability levels.
53
 
54
- | Capability | Subtasks | Samples |
55
- |---|---|---:|
56
- | Perception | Counting, Depth, Orientation, Object Size | 145 |
57
- | Understanding | Relationship, Perspective, Mental Modeling, Spatial Grounding | 140 |
58
- | Reasoning | Multi-hop, Prediction, Geometric Feasibility | 90 |
59
- | Interaction | Affordance, Navigation, Trajectory | 95 |
60
 
61
- ## Files
62
 
63
- ```text
64
- SpatialGen-Bench/
65
- ├── data/
66
- │ └── spatialgen_bench.jsonl
67
- ├── benchmarks/
68
- │ ├── perception/
69
- │ ├── understanding/
70
- │ ├── reasoning/
71
- │ └── interaction/
72
- ├── protocols/
73
- │ └── spatialgen_bench.yaml
74
- ├── SOURCES.md
75
- └── LICENSE
76
- ```
77
 
78
- Each JSONL record contains:
79
 
80
- - `id`: stable sample identifier
81
- - `capability`: one of the four capability levels
82
- - `task`: subtask name
83
- - `image_path`: path relative to `benchmarks/`
84
- - `media_paths`: all ordered input images for single- or multi-image tasks
85
- - `mask_path`: optional ground-truth mask path
86
- - `question`, string-normalized `answer`, `answer_type`, and `choices`
87
- - `source`, `source_id`, and serialized task-specific `metadata_json`
88
 
89
- Load the benchmark with Hugging Face Datasets:
90
 
91
  ```python
92
  from datasets import load_dataset
93
 
94
  dataset = load_dataset("wx91726/SpatialGen-Bench", split="test")
 
95
  ```
96
 
97
- Media fields contain paths relative to the repository's `benchmarks/` directory. Download the complete evaluation package with:
98
 
99
  ```bash
100
- hf download wx91726/SpatialGen-Bench --repo-type dataset --local-dir SpatialGen-Bench
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  ```
102
 
103
- The versioned visual-answer contract is provided in [`protocols/spatialgen_bench.yaml`](protocols/spatialgen_bench.yaml). Runtime protocol implementations and parsers are maintained in [ProVisE](https://github.com/XuWang917/ProVisE). See [`SOURCES.md`](SOURCES.md) for task-level provenance, licenses, and upstream media terms.
 
 
 
 
 
 
 
 
104
 
105
- ## Acknowledgements
106
 
107
- We sincerely appreciate [CountBench](https://teaching-clip-to-count.github.io/), [BLINK](https://huggingface.co/datasets/BLINK-Benchmark/BLINK), [EgoOrientBench](https://huggingface.co/datasets/jhCOR/EgoOrientBench), [VSR](https://github.com/cambridgeltl/visual-spatial-reasoning), [ViewSpatial-Bench](https://huggingface.co/datasets/lidingm/ViewSpatial-Bench), [MindCube](https://huggingface.co/datasets/MLL-Lab/MindCube), [VisWorld-Eval](https://github.com/thuml/Reasoning-Visual-World), [RoboAfford-Eval](https://huggingface.co/datasets/tyb197/RoboAfford-Eval), [ShareRobot-Bench](https://huggingface.co/datasets/BAAI/ShareRobot-Bench), [PhysBench](https://huggingface.co/datasets/USC-PSI-Lab/PhysBench), [SPHERE-VLM](https://sphere-vlm.github.io/), and [RefCOCOg](https://github.com/lichengunc/refer) for their public datasets, task designs, and evaluation resources.
 
 
108
 
109
- ## License
 
 
 
110
 
111
- SpatialGen-Bench annotations and protocol configuration are released under Apache-2.0. Source-derived media remains subject to the licenses and terms of its upstream datasets. See [`SOURCES.md`](SOURCES.md) before redistributing or using the media.
112
 
113
  ## Citation
114
 
115
  ```bibtex
116
- @misc{wang2026showdonttell,
117
  title = {Show, Don't Tell: Evaluating Spatial Cognition in Generative Pixels Rather Than LLM Text},
118
  author = {Wang, Xu and Yao, Kaixiang and Pan, Miao and Zhou, Xiaohe and Liu, Xuanyu and Zhang, Wenqi and Zhang, Xuhong},
119
- year = {2026}
 
 
120
  }
121
  ```
 
8
  - visual-question-answering
9
  - image-to-image
10
  license: other
11
+ tags:
12
+ - spatial-intelligence
13
+ - spatial-reasoning
14
+ - image-generation
15
+ - vision-language-models
16
+ - benchmark
17
  dataset_info:
18
  - config_name: default
19
  features:
 
53
  path: data/spatialgen_bench.jsonl
54
  ---
55
 
56
+ <div align="center">
57
+
58
  # SpatialGen-Bench
59
 
60
+ ### Show spatial cognition in generative pixels, not only in text.
61
 
62
+ [![Paper](https://img.shields.io/badge/arXiv-2607.21072-B31B1B?style=flat-square)](https://arxiv.org/abs/2607.21072)
63
+ [![Project](https://img.shields.io/badge/Project-Page-1769AA?style=flat-square)](https://zju-omniai.github.io/ProVisE/)
64
+ [![Code](https://img.shields.io/badge/Code-ProVisE-181717?style=flat-square&logo=github&logoColor=white)](https://github.com/ZJU-OmniAI/ProVisE)
 
 
 
65
 
66
+ </div>
67
 
68
+ <p align="center">
69
+ <video controls playsinline preload="metadata" poster="assets/provise-overview-poster.webp" width="90%">
70
+ <source src="assets/provise-overview.mp4" type="video/mp4">
71
+ </video>
72
+ </p>
 
 
 
 
 
 
 
 
 
73
 
74
+ ## Benchmark
75
 
76
+ <p align="center">
77
+ <img src="assets/benchmark_overview.webp" alt="SpatialGen-Bench task overview across perception, understanding, reasoning, and interaction." width="100%">
78
+ </p>
79
+
80
+ Each record retains its source-task metric target as `integer`, `text`, `point`, `mask`, or `polyline`. The frozen visual-answer contract is available at [`protocols/spatialgen_bench.yaml`](protocols/spatialgen_bench.yaml), with runtime parsers in [ProVisE](https://github.com/ZJU-OmniAI/ProVisE).
 
 
 
81
 
82
+ ## Quick Start
83
 
84
  ```python
85
  from datasets import load_dataset
86
 
87
  dataset = load_dataset("wx91726/SpatialGen-Bench", split="test")
88
+ print(dataset[0])
89
  ```
90
 
91
+ Download the complete media and evaluation package for local evaluation:
92
 
93
  ```bash
94
+ hf download wx91726/SpatialGen-Bench \
95
+ --repo-type dataset \
96
+ --local-dir SpatialGen-Bench
97
+ ```
98
+
99
+ <details>
100
+ <summary><strong>Dataset structure and JSONL schema</strong></summary>
101
+
102
+ ```text
103
+ SpatialGen-Bench/
104
+ |-- data/spatialgen_bench.jsonl
105
+ |-- benchmarks/{perception,understanding,reasoning,interaction}/
106
+ |-- protocols/spatialgen_bench.yaml
107
+ |-- SOURCES.md
108
+ `-- LICENSE
109
  ```
110
 
111
+ - `id`: stable sample identifier
112
+ - `capability`: one of the four capability levels
113
+ - `task`: subtask name
114
+ - `image_path`: primary input path relative to `benchmarks/`
115
+ - `media_paths`: ordered inputs for single- or multi-image tasks
116
+ - `mask_path`: optional ground-truth mask path
117
+ - `question`, normalized `answer`, `answer_type`, and `choices`
118
+ - `source` and `source_id`: upstream provenance
119
+ - `metadata_json`: serialized task-specific evaluator metadata
120
 
121
+ </details>
122
 
123
+ ## Sources and License
124
+
125
+ SpatialGen-Bench annotations and protocol configuration are released under Apache-2.0. Source-derived media remains subject to the licenses and terms of its upstream datasets. [`SOURCES.md`](SOURCES.md) records task-level provenance, source links, and usage terms.
126
 
127
+ <details>
128
+ <summary><strong>Acknowledgements and upstream resources</strong></summary>
129
+
130
+ We sincerely appreciate [CountBench](https://teaching-clip-to-count.github.io/), [BLINK](https://huggingface.co/datasets/BLINK-Benchmark/BLINK), [EgoOrientBench](https://huggingface.co/datasets/jhCOR/EgoOrientBench), [VSR](https://github.com/cambridgeltl/visual-spatial-reasoning), [ViewSpatial-Bench](https://huggingface.co/datasets/lidingm/ViewSpatial-Bench), [MindCube](https://huggingface.co/datasets/MLL-Lab/MindCube), [VisWorld-Eval](https://github.com/thuml/Reasoning-Visual-World), [RoboAfford-Eval](https://huggingface.co/datasets/tyb197/RoboAfford-Eval), [ShareRobot-Bench](https://huggingface.co/datasets/BAAI/ShareRobot-Bench), [PhysBench](https://huggingface.co/datasets/USC-PSI-Lab/PhysBench), [SPHERE-VLM](https://sphere-vlm.github.io/), and [RefCOCOg](https://github.com/lichengunc/refer) for their public datasets, task designs, and evaluation resources.
131
 
132
+ </details>
133
 
134
  ## Citation
135
 
136
  ```bibtex
137
+ @article{wang2026showdonttell,
138
  title = {Show, Don't Tell: Evaluating Spatial Cognition in Generative Pixels Rather Than LLM Text},
139
  author = {Wang, Xu and Yao, Kaixiang and Pan, Miao and Zhou, Xiaohe and Liu, Xuanyu and Zhang, Wenqi and Zhang, Xuhong},
140
+ journal = {arXiv preprint arXiv:2607.21072},
141
+ year = {2026},
142
+ url = {https://arxiv.org/abs/2607.21072}
143
  }
144
  ```
assets/benchmark_overview.webp ADDED

Git LFS Details

  • SHA256: 598e2fd3c94e2be31a708b3fe0ab4e368cf7665c57bf7155cb690a98e2a1fd06
  • Pointer size: 131 Bytes
  • Size of remote file: 256 kB
assets/provise-overview-poster.webp ADDED

Git LFS Details

  • SHA256: ddf1dc1b2af0910dc563889a0d869323e15ec78a4677b60cc1538e5699231c7c
  • Pointer size: 131 Bytes
  • Size of remote file: 109 kB
assets/provise-overview.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fabd0020daae926b5c90267d145620757e14653d7356f79a8b7ff9d2ce7e0e48
3
+ size 25344549