File size: 2,311 Bytes
10d3b36
 
 
 
 
 
 
 
 
 
0ce4423
10d3b36
 
 
 
 
 
9cdf54e
e42e82c
0ce4423
10d3b36
0ce4423
 
 
10d3b36
0ce4423
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10d3b36
 
0ce4423
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9cdf54e
0ce4423
9cdf54e
 
 
0ce4423
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
license: cc-by-4.0
task_categories:
- visual-question-answering
language:
- en
tags:
- table-understanding
- multimodal
- benchmark
pretty_name: WildTableBench
size_categories:
- 1K<n<10K
---

# WildTableBench

[[Paper](https://arxiv.org/abs/2605.01018)] [[GitHub](https://github.com/hjzhe/WildTableBench)]

**WildTableBench** is a benchmark for evaluating multimodal foundation models on table understanding in the wild.

- **402 real-world table images** collected from diverse domains
- **928 questions** across 5 categories and 17 subtypes
- Covers numerical reasoning, verification, cell locating, structural understanding, and more

## Dataset Structure

```
WildTableBench/
├── metadata.csv       # 928 questions with labels
└── images/            # 402 table images (1.jpg … 402.jpg)
```

### `metadata.csv` columns

| Column | Description |
|---|---|
| `file_name` | Relative path to the image (e.g. `images/1.jpg`) |
| `image_id` | Image index (1–402) |
| `index` | Question index within the image (1, 2, …) |
| `uuid` | Unique question ID (e.g. `wtb_001_q1`) |
| `question` | Question text |
| `category` | Category ID (C1–C5) |
| `category_name` | Category name |
| `subtype_id` | Subtype ID (e.g. `C2-C`) |
| `subtype_name` | Subtype name |
| `ground_truth` | Ground truth answer |

## Question Categories

| ID | Name | Subtypes |
|---|---|---|
| C1 | Cell-Level | Transcription, Cell Locating, Semantic Lookup & Struct., Excel Formula |
| C2 | Numerical | Basic Numerical, Conditional Numerical, Multi-step Conditional, Ranking |
| C3 | Verification | Value Verification, Aggregate Verification, Conditional Verification |
| C4 | Hypothetical | Hypothetical Condition, Value Modification, Row Operation |
| C5 | Color | Color Identification, Color-based Counting, Color-based Reasoning |

## Usage

```python
from datasets import load_dataset

dataset = load_dataset("jzhuang/WildTableBench")
```

## Citation

```bibtex
@article{huang2025wildtablebench,
  title={WildTableBench: Benchmarking Multimodal Foundation Models on Table Understanding In the Wild},
  author={Junzhe Huang and Xiaoxiao Sun and Yan Yang and Yuxuan Hou and Ruotian Zhang and Sirui Li and Hehe Fan and Serena Yeung-Levy and Xin Yu},
  journal={arXiv preprint arXiv:2605.01018},
  year={2025},
}
```