interchart commited on
Commit
ce2e13a
·
verified ·
1 Parent(s): d0031cc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +180 -3
README.md CHANGED
@@ -1,3 +1,180 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # INTERCHART: Benchmarking Visual Reasoning Across Decomposed and Distributed Chart Information
6
+
7
+ [![Website](https://img.shields.io/badge/Website-InterChart.github.io-blue)](https://interchart.github.io/)
8
+ [![Paper](https://img.shields.io/badge/arXiv-2508.07630v1-b31b1b)](https://arxiv.org/abs/2508.07630v1)
9
+ [![License](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-green)](https://creativecommons.org/licenses/by-nc-sa/4.0/)
10
+
11
+ ---
12
+
13
+ ## 🧩 Overview
14
+
15
+ **INTERCHART** is a multi-tier benchmark that evaluates how well **vision-language models (VLMs)** reason across **multiple related charts**, a crucial skill for real-world applications like scientific reports, financial analyses, and policy dashboards.
16
+ Unlike single-chart benchmarks, INTERCHART challenges models to integrate information across **decomposed**, **synthetic**, and **real-world** chart contexts.
17
+
18
+ > **Paper:** [INTERCHART: Benchmarking Visual Reasoning Across Decomposed and Distributed Chart Information](https://arxiv.org/abs/2508.07630v1)
19
+
20
+ ---
21
+
22
+ ## 📂 Dataset Structure
23
+
24
+ ```
25
+
26
+ INTERCHART/
27
+ ├── DECAF
28
+ │ ├── combined # Multi-chart combined images (stitched)
29
+ │ ├── original # Original compound charts
30
+ │ ├── questions # QA pairs for decomposed single-variable charts
31
+ │ └── simple # Simplified decomposed charts
32
+ ├── SPECTRA
33
+ │ ├── combined # Synthetic chart pairs (shared axes)
34
+ │ ├── questions # QA pairs for correlated and independent reasoning
35
+ │ └── simple # Individual charts rendered from synthetic tables
36
+ ├── STORM
37
+ │ ├── combined # Real-world chart pairs (stitched)
38
+ │ ├── images # Original Our World in Data charts
39
+ │ ├── meta-data # Extracted metadata and semantic pairings
40
+ │ ├── questions # QA pairs for temporal, cross-domain reasoning
41
+ │ └── tables # Structured table representations (optional)
42
+
43
+ ````
44
+
45
+ Each subset targets a different **level of reasoning complexity** and visual diversity.
46
+
47
+ ---
48
+
49
+ ## 🧠 Subset Descriptions
50
+
51
+ ### **1️⃣ DECAF** — *Decomposed Elementary Charts with Answerable Facts*
52
+ - Focus: **Factual lookup** and **comparative reasoning** on simplified single-variable charts.
53
+ - Sources: Derived from ChartQA, ChartLlama, ChartInfo, DVQA.
54
+ - Content: 1,188 decomposed charts and 2,809 QA pairs.
55
+ - Tasks: Identify, compare, or extract values across clean, minimal visuals.
56
+
57
+ ---
58
+
59
+ ### **2️⃣ SPECTRA** — *Synthetic Plots for Event-based Correlated Trend Reasoning and Analysis*
60
+ - Focus: **Trend correlation** and **scenario-based inference** between synthetic chart pairs.
61
+ - Construction: Generated via Gemini 1.5 Pro + human validation to preserve shared axes and realism.
62
+ - Content: 870 unique charts, 1,717 QA pairs across 333 contexts.
63
+ - Tasks: Analyze multi-variable relationships, infer trends, and reason about co-evolving variables.
64
+
65
+ ---
66
+
67
+ ### **3️⃣ STORM** — *Sequential Temporal Reasoning Over Real-world Multi-domain Charts*
68
+ - Focus: **Multi-step reasoning**, **temporal analysis**, and **semantic alignment** across real-world charts.
69
+ - Source: Curated from *Our World in Data* with metadata-driven semantic pairing.
70
+ - Content: 648 charts across 324 validated contexts, 768 QA pairs.
71
+ - Tasks: Align mismatched domains, estimate ranges, and reason about evolving trends.
72
+
73
+ ---
74
+
75
+ ## ⚙️ Evaluation & Methodology
76
+
77
+ INTERCHART supports both **visual** and **table-based** evaluation modes.
78
+
79
+ - **Visual Inputs:**
80
+ - *Combined:* Charts stitched into a unified image.
81
+ - *Interleaved:* Charts provided sequentially.
82
+
83
+ - **Structured Table Inputs:**
84
+ Models can extract tables using tools like **DePlot** or **Gemini Title Extraction**, followed by **table-based QA**.
85
+
86
+ - **Prompting Strategies:**
87
+ - Zero-Shot
88
+ - Zero-Shot Chain-of-Thought (CoT)
89
+ - Few-Shot CoT with Directives (CoTD)
90
+
91
+ - **Evaluation Pipeline:**
92
+ Multi-LLM *semantic judging* (Gemini 1.5 Flash, Phi-4, Qwen2.5) with **majority voting** to evaluate semantic correctness.
93
+
94
+ ---
95
+
96
+ ## 📊 Dataset Statistics
97
+
98
+ | Subset | Charts | Contexts | QA Pairs | Reasoning Type Examples |
99
+ |----------|---------|-----------|-----------|--------------------------|
100
+ | **DECAF** | 1,188 | 355 | 2,809 | Factual lookup, comparison |
101
+ | **SPECTRA** | 870 | 333 | 1,717 | Trend correlation, event reasoning |
102
+ | **STORM** | 648 | 324 | 768 | Temporal reasoning, abstract numerical inference |
103
+ | **Total** | 2,706 | 1,012 | **5,214** | — |
104
+
105
+ ---
106
+
107
+ ## 🚀 Usage
108
+
109
+ ### Load from Hugging Face
110
+
111
+ ```python
112
+ from datasets import load_dataset
113
+
114
+ dataset = load_dataset("interchart/interchart", name="DECAF")
115
+ print(dataset["train"][0])
116
+ ````
117
+
118
+ Available subsets:
119
+
120
+ * `"DECAF"`
121
+ * `"SPECTRA"`
122
+ * `"STORM"`
123
+
124
+ Each entry contains:
125
+
126
+ ```json
127
+ {
128
+ "id": "DECAF_00123",
129
+ "image_path": "DECAF/simple/chart_123.png",
130
+ "question": "What is the highest bar value for 2020?",
131
+ "answer": "45.6",
132
+ "question_type": "comparison",
133
+ "subset": "DECAF"
134
+ }
135
+ ```
136
+
137
+ ---
138
+
139
+ ## 🔍 Citation
140
+
141
+ If you use this dataset, please cite:
142
+
143
+ ```
144
+ @article{iyengar2025interchart,
145
+ title={INTERCHART: Benchmarking Visual Reasoning Across Decomposed and Distributed Chart Information},
146
+ author={Anirudh Iyengar Kaniyar Narayana Iyengar and Srija Mukhopadhyay and Adnan Qidwai and Shubhankar Singh and Dan Roth and Vivek Gupta},
147
+ journal={arXiv preprint arXiv:2508.07630},
148
+ year={2025}
149
+ }
150
+ ```
151
+
152
+ ---
153
+
154
+ ## 🔗 Links
155
+
156
+ * 📘 **Paper:** [arXiv:2508.07630v1](https://arxiv.org/abs/2508.07630v1)
157
+ * 🌐 **Website:** [https://interchart.github.io](https://interchart.github.io)
158
+ * 🧠 **Demo (coming soon):** [Interactive Evaluation Portal](https://interchart.github.io/explore.html)
159
+
160
+ ---
161
+
162
+ ## 📜 License
163
+
164
+ **Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)**
165
+ You are free to share and adapt the dataset for non-commercial use with attribution.
166
+
167
+ ---
168
+
169
+ ## 💬 Contact
170
+
171
+ For questions or collaborations:
172
+
173
+ **Authors:**
174
+ Anirudh Iyengar Kaniyar Narayana Iyengar — [akaniyar@asu.edu](mailto:akaniyar@asu.edu)
175
+ Srija Mukhopadhyay — [srija.mukhopadhyay@research.iiit.ac.in](mailto:srija.mukhopadhyay@research.iiit.ac.in)
176
+ Vivek Gupta — [vgupt140@asu.edu](mailto:vgupt140@asu.edu)
177
+
178
+ ---
179
+
180
+