Datasets:
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
tags:
|
| 5 |
+
- vision-language
|
| 6 |
+
- vqa
|
| 7 |
+
- diagnostic-benchmark
|
| 8 |
+
- xai
|
| 9 |
+
license: mit
|
| 10 |
+
task_categories:
|
| 11 |
+
- visual-question-answering
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# GridVQA-X Datasets
|
| 15 |
+
|
| 16 |
+
GridVQA-X is the first diagnostic framework designed to objectively evaluate the faithfulness of post-hoc cross-modal explainers. By utilizing a closed-world synthesis logic with mathematically guaranteed unique ground-truth explanations, it provides a controlled testbed to isolate genuine cross-modal spatial reasoning from shallow shortcuts.
|
| 17 |
+
|
| 18 |
+
## Dataset Summary
|
| 19 |
+
The dataset features **S × S** visual grids populated by geometric objects, paired with multi-hop spatial reasoning queries. Each query defines a **Target** object to find/count and one or more **Anchor** reference objects connected by directional tokens.
|
| 20 |
+
|
| 21 |
+
The dataset contains two distinct, parallel splits:
|
| 22 |
+
* **D_pure (The Causal Split):** Systematically removes all statistical heuristics. It algorithmically populates invalid spatial regions with adversarial distractors matching target attributes, forcing models to utilize complete multi-hop spatial geometry.
|
| 23 |
+
* **D_spur (The Shortcut Split):** Intentionally preserves the pervasive "Bag-of-Words Alignment" cross-modal shortcut. No target-attribute objects are placed outside the valid spatial region, creating a behavioral trap where the probability of the answer given target attributes is 1.0.
|
| 24 |
+
|
| 25 |
+
## Dataset Taxonomy and Configurations
|
| 26 |
+
Every sample is parameterized by a strict 4-tuple configuration: **(Depth, QType, Form, Density)**
|
| 27 |
+
|
| 28 |
+
* **Spatial Depth (1, 2, or 3):** Controls the number of anchor objects and relational multi-hop complexity.
|
| 29 |
+
* **Question Type (QType):**
|
| 30 |
+
* `Attribute-Only (A)`: Non-spatial baseline queries.
|
| 31 |
+
* `Shape-Only (SO)` / `Color-Only (CO)`: Isolates directional reasoning to a single feature type.
|
| 32 |
+
* `Mixed (M)`: Requires multimodal binding of shape and color for both target and anchor.
|
| 33 |
+
* `Comparison (CMP)`: Multi-step logical operations comparing object counts.
|
| 34 |
+
* **Form (0 or 1):** Alters the target task header between counting (`0`) and existence (`1`) to prevent statistical format overfitting.
|
| 35 |
+
* **Density (d_0.3 or d_0.7):** Adjusts grid object count to test spatial localization fidelity against background noise.
|
| 36 |
+
|
| 37 |
+
## Ground-Truth Explanations
|
| 38 |
+
The dataset provides a mathematically proven, unique ground-truth causal explanation. The ground-truth visual masks are strictly bounded to the target and anchor items (**A ∪ T**), leaving all other distractor objects with a causal effect of exactly zero.
|