EvalData commited on
Commit
9f8d6d7
·
verified ·
1 Parent(s): f082099

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +227 -0
README.md ADDED
@@ -0,0 +1,227 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: cc-by-4.0
5
+ task_categories:
6
+ - visual-question-answering
7
+ - multimodal
8
+ tags:
9
+ - mllm
10
+ - visualization
11
+ - benchmark
12
+ - structured-data
13
+ size_categories:
14
+ - 1K<n<10K
15
+ dataset_info:
16
+ features:
17
+ - name: question_id
18
+ dtype: string
19
+ - name: question
20
+ dtype: string
21
+ - name: answer
22
+ dtype: string
23
+ - name: modality
24
+ dtype: string
25
+ - name: source
26
+ dtype: string
27
+ - name: viz_type
28
+ dtype: string
29
+ - name: difficulty
30
+ dtype: string
31
+ - name: task
32
+ dtype: string
33
+ - name: data_id
34
+ dtype: string
35
+ - name: data
36
+ dtype: string
37
+ - name: metadata
38
+ dtype: string
39
+ splits:
40
+ - name: base_items
41
+ num_examples: 1500
42
+ - name: mixed_items
43
+ num_examples: 600
44
+ - name: realworld_test
45
+ num_examples: 3795
46
+ config_name: default
47
+ ---
48
+
49
+ # Dataset Card for StructViz-Bench
50
+
51
+ ## Dataset Description
52
+
53
+ - **Homepage:** [https://huggingface.co/datasets/anonymous/structviz-bench](https://huggingface.co/datasets/anonymous/structviz-bench)
54
+ - **Repository:** [https://github.com/anonymous/StructViz-Bench](https://github.com/anonymous/StructViz-Bench)
55
+ - **Paper:** StructViz-Bench: A Unified Benchmark for Evaluating MLLM Reasoning over Visualized Structured Data
56
+ - **Point of Contact:** Anonymous
57
+ - **License:** CC-BY-4.0
58
+
59
+ ### Dataset Summary
60
+
61
+ StructViz-Bench is a benchmark for evaluating Multimodal Large Language Model (MLLM) reasoning over visualized structured data. It systematically measures **visualization sensitivity** -- the degree to which a model's reasoning performance changes when the same underlying data is presented in different visual formats.
62
+
63
+ The benchmark encompasses three primary data modalities (tabular, time-series, and graph), 14 distinct visualization types, 4 question difficulty levels (1-hop, 2-hop, 3-hop, and counterfactual), and a diverse set of reasoning tasks. It contains 3,795 base items, which expand to 18,315 rendered instances per model. Released evaluations cover four core models (GPT-4o, Gemini Flash, Qwen2.5-VL-7B, Claude Sonnet) for a total of 73,260 instances, plus a supplementary same-family scale evaluation on Qwen2.5-VL-32B for testing whether parameter scale eliminates format dependence.
64
+
65
+ ### Supported Tasks
66
+
67
+ - **Visual Question Answering (VQA):** Answering natural language questions grounded in visualized structured data, requiring extraction, comparison, aggregation, and multi-step reasoning.
68
+ - **Multimodal Reasoning:** Evaluating the capacity of models to perform multi-hop inference and counterfactual reasoning over visual inputs derived from structured data.
69
+ - **Visualization Robustness Evaluation:** Quantifying the consistency of model performance across different visual representations of identical underlying data.
70
+ - **Cross-Modal Reasoning:** Assessing model performance on composite items that require simultaneous reasoning over two distinct data modalities (e.g., tabular + time-series, tabular + graph, time-series + graph).
71
+
72
+ ### Languages
73
+
74
+ All questions, answers, and metadata are in English (en).
75
+
76
+ ## Dataset Structure
77
+
78
+ ### Data Instances
79
+
80
+ A representative example from `base_items.jsonl`:
81
+
82
+ ```json
83
+ {
84
+ "question_id": "tabular_000003::difficulty=1-hop",
85
+ "question": "Which 'ticker' has the highest 'close_price' value?",
86
+ "answer": "BET",
87
+ "modality": "tabular",
88
+ "data_id": "finance_stock_prices",
89
+ "task": "ranking",
90
+ "difficulty": "1-hop",
91
+ "viz_methods": ["bar_chart", "heatmap", "table_image", "scatter_plot", "text_only"],
92
+ "metadata": {"domain": "finance", "description": "Monthly stock activity for a set of listed companies."},
93
+ "data_format": "dataframe_records",
94
+ "data": [ ... ],
95
+ "data_columns": ["ticker", "period", "close_price", "trade_volume_k", "daily_return_pct", "market_segment"]
96
+ }
97
+ ```
98
+
99
+ ### Data Fields
100
+
101
+ | Field | Type | Description |
102
+ |---|---|---|
103
+ | `question_id` | string | Unique identifier encoding modality, item index, and difficulty level. |
104
+ | `question` | string | The natural language question posed to the model. |
105
+ | `answer` | string | The ground-truth answer, generated via programmatic solvers. |
106
+ | `modality` | string | The data modality: `tabular`, `timeseries`, `graph`, `mixed_tab_ts`, `mixed_tab_graph`, or `mixed_ts_graph`. |
107
+ | `source` | string | Provenance of the underlying data: `synthetic`, `scitabalign`, `ett`, or `networkx_realworld`. |
108
+ | `viz_methods` | list[string] | Applicable visualization types for the item (e.g., `bar_chart`, `heatmap`, `line_plot`, `node_link`, `text_only`). |
109
+ | `difficulty` | string | Reasoning depth: `1-hop`, `2-hop`, `3-hop`, or `counterfactual`. |
110
+ | `task` | string | The reasoning task category (e.g., `value_extraction`, `ranking`, `comparison`, `trend_analysis`, `aggregation`, `filtering`, `correlation`, `forecasting`, `peak_identification`, `pattern_classification`, `anomaly_detection`, `connectivity`, `shortest_path`, `community`, `degree_query`). |
111
+ | `data_id` | string | Identifier for the underlying data instance. |
112
+ | `data` | object | The raw structured data used to generate the visualization and formulate the question. |
113
+ | `metadata` | object | Domain-specific metadata including domain name, description, and column or feature descriptions. |
114
+ | `data_format` | string | Format descriptor for the data field (e.g., `dataframe_records`, `json_dict`). |
115
+ | `data_columns` | list[string] | Column names for tabular data (when applicable). |
116
+
117
+ ### Data Splits
118
+
119
+ StructViz-Bench is an **evaluation-only** benchmark and does not provide training or validation splits. The data is organized into three files:
120
+
121
+ | File | Items | Description |
122
+ |---|---|---|
123
+ | `base_items.jsonl` | 1,500 | Synthetic-only single-modality items (500 tabular + 500 time-series + 500 graph). |
124
+ | `realworld_test.jsonl` | 3,795 | Full benchmark: all 1,500 synthetic items plus 2,295 real-world items (1,265 SciTabAlign tabular + 870 ETT time-series + 160 NetworkX graph). This is the primary evaluation file used for all paper results. |
125
+ | `mixed_items.jsonl` | 600 | Cross-modal composite items (200 tab+ts, 200 tab+graph, 200 ts+graph). |
126
+
127
+ Note: `realworld_test.jsonl` is a superset of `base_items.jsonl`. The name reflects that it includes real-world sources; use the `source` field (`synthetic`, `scitabalign`, `ett`, `networkx_realworld`) to filter by provenance.
128
+
129
+ When expanded across all applicable visualization types, the base items yield 18,315 rendered instances per model. Across four evaluated models, this produces a total of 73,260 evaluated instances.
130
+
131
+ ## Dataset Creation
132
+
133
+ ### Curation Rationale
134
+
135
+ Existing multimodal benchmarks typically focus on a single data type (e.g., charts or tables) or employ a fixed visualization style per data instance. This design conflates the difficulty of the underlying reasoning task with the difficulty imposed by the specific visual encoding. StructViz-Bench was created to fill this gap by decoupling data content from visual representation, thereby enabling controlled measurement of visualization sensitivity in MLLM reasoning.
136
+
137
+ ### Source Data
138
+
139
+ The benchmark draws on both synthetic and real-world data sources:
140
+
141
+ - **Synthetic data:** Programmatically generated from parameterized templates across multiple domains (finance, healthcare, environmental science, etc.) to ensure controlled complexity and balanced coverage of reasoning tasks.
142
+ - **Real-world tabular data:** Derived from SciTabAlign, a collection of scientific tables with structured annotations.
143
+ - **Real-world time-series data:** Derived from the ETT (Electricity Transformer Temperature) dataset, containing multivariate sensor readings.
144
+ - **Real-world graph data:** Classic and empirical graph structures generated via NetworkX, including social networks and infrastructure topologies.
145
+
146
+ ### Annotations
147
+
148
+ All questions and ground-truth answers are generated programmatically using quality-validated templates and deterministic solvers. This approach ensures:
149
+
150
+ - Correctness: Answers are computed directly from the underlying data, eliminating human annotation errors.
151
+ - Scalability: The template-based system supports systematic generation across modalities, difficulty levels, and task types.
152
+ - Reproducibility: Given the same data and configuration, the benchmark can be regenerated identically.
153
+
154
+ ### Annotation Process
155
+
156
+ No manual annotation was performed. The question-answer generation pipeline consists of:
157
+
158
+ 1. Data instantiation from parameterized templates or real-world sources.
159
+ 2. Question generation via modality-specific and task-specific template functions.
160
+ 3. Answer computation using deterministic programmatic solvers.
161
+ 4. Quality validation through automated consistency checks and unit tests.
162
+
163
+ ## Considerations for Using the Data
164
+
165
+ ### Social Impact
166
+
167
+ StructViz-Bench is intended to advance the scientific understanding of MLLM capabilities and limitations in interpreting visualized structured data. It may contribute to improved model robustness and more reliable deployment of vision-language systems in data analysis workflows.
168
+
169
+ ### Biases
170
+
171
+ - **Domain coverage:** While the benchmark spans multiple domains (finance, healthcare, environmental science, infrastructure), it does not exhaustively represent all possible application domains.
172
+ - **Visualization design:** The 14 visualization types selected represent common and widely-used formats but do not cover all possible visual encodings (e.g., 3D visualizations, interactive dashboards).
173
+ - **Language:** All content is in English, limiting direct applicability to multilingual evaluation settings.
174
+
175
+ ### Limitations
176
+
177
+ - **Evaluation-only:** This benchmark is designed exclusively for evaluation. Using it for model training may lead to overfitting on the specific templates and visualization styles employed.
178
+ - **Synthetic component:** Although real-world data sources are included, the synthetic generation component may not fully capture the noise, irregularities, and complexity of all real-world visualization scenarios.
179
+ - **Static visualizations:** The benchmark evaluates static rendered images only and does not address interactive or dynamic visualization modalities.
180
+ - **Answer format:** Ground-truth answers are expressed as short strings (exact match evaluation), which may not capture the full spectrum of valid natural language responses.
181
+
182
+ ## Additional Information
183
+
184
+ ### Licensing Information
185
+
186
+ This dataset is released under the [Creative Commons Attribution 4.0 International License (CC-BY-4.0)](https://creativecommons.org/licenses/by/4.0/).
187
+
188
+ ### Citation Information
189
+
190
+ ```bibtex
191
+ @inproceedings{structvizbench2026,
192
+ title={StructViz-Bench: A Unified Benchmark for Evaluating MLLM Reasoning over Visualized Structured Data},
193
+ author={Anonymous},
194
+ booktitle={NeurIPS 2026 Datasets and Benchmarks Track},
195
+ year={2026}
196
+ }
197
+ ```
198
+
199
+ ### Dataset Statistics
200
+
201
+ | Statistic | Value |
202
+ |---|---|
203
+ | Total base items | 3,795 |
204
+ | Single-modality items (base_items) | 1,500 |
205
+ | Cross-modal items (mixed_items) | 600 |
206
+ | Real-world items (realworld_test) | 3,795 |
207
+ | Visualization types | 14 |
208
+ | Data modalities | 3 (tabular, timeseries, graph) |
209
+ | Difficulty levels | 4 (1-hop, 2-hop, 3-hop, counterfactual) |
210
+ | Rendered instances per model | 18,315 |
211
+ | Total evaluated instances (4 models) | 73,260 |
212
+ | Task categories | 49 |
213
+
214
+ ### Visualization Types
215
+
216
+ **Tabular modality (5 types):**
217
+ - `bar_chart`, `heatmap`, `table_image`, `scatter_plot`, `text_only`
218
+
219
+ **Time-series modality (5 types):**
220
+ - `line_plot`, `gaf` (Gramian Angular Field), `recurrence_plot`, `heatmap`, `text_only`
221
+
222
+ **Graph modality (4 types):**
223
+ - `node_link`, `adjacency_matrix`, `circular_layout`, `text_only`
224
+
225
+ ### Contact
226
+
227
+ For questions or issues regarding this dataset, please open an issue in the associated repository.