jzhuang commited on
Commit
0ce4423
·
verified ·
1 Parent(s): 10d3b36

Use clean README without dataset_info for ImageFolder auto-detect

Browse files
Files changed (1) hide show
  1. README.md +53 -41
README.md CHANGED
@@ -8,54 +8,66 @@ tags:
8
  - table-understanding
9
  - multimodal
10
  - benchmark
 
11
  size_categories:
12
  - 1K<n<10K
13
- dataset_info:
14
- features:
15
- - name: image
16
- dtype: image
17
- - name: image_id
18
- dtype: int32
19
- - name: index
20
- dtype: int32
21
- - name: uuid
22
- dtype: string
23
- - name: question
24
- dtype: string
25
- - name: category
26
- dtype: string
27
- - name: category_name
28
- dtype: string
29
- - name: subtype_id
30
- dtype: string
31
- - name: subtype_name
32
- dtype: string
33
- - name: ground_truth
34
- dtype: string
35
- splits:
36
- - name: train
37
- num_examples: 928
38
- configs:
39
- - config_name: default
40
- data_files:
41
- - split: train
42
- path: metadata.csv
43
  ---
44
 
45
  # WildTableBench
46
 
47
- **WildTableBench** is a multimodal benchmark for evaluating table understanding in the wild.
48
 
49
- - **Images**: 402 real-world table images
50
- - **Questions**: 928 questions across 5 categories
51
- - **License**: CC-BY-4.0
52
 
53
- ## Categories
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
 
55
  | ID | Name | Subtypes |
56
- |----|------|---------|
57
- | C1 | Cell-Level | F, L, S, T |
58
- | C2 | Numerical | B, C, M, R |
59
- | C3 | Verification | A, C, V |
60
- | C4 | Hypothetical | H, M, R |
61
- | C5 | Color | C, I, R |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  - table-understanding
9
  - multimodal
10
  - benchmark
11
+ pretty_name: WildTableBench
12
  size_categories:
13
  - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  ---
15
 
16
  # WildTableBench
17
 
18
+ **WildTableBench** is a benchmark for evaluating multimodal foundation models on table understanding in the wild.
19
 
20
+ - **402 real-world table images** collected from diverse domains
21
+ - **928 questions** across 5 categories and 17 subtypes
22
+ - Covers numerical reasoning, verification, cell locating, structural understanding, and more
23
 
24
+ ## Dataset Structure
25
+
26
+ ```
27
+ WildTableBench/
28
+ ├── metadata.csv # 928 questions with labels
29
+ └── images/ # 402 table images (1.jpg … 402.jpg)
30
+ ```
31
+
32
+ ### `metadata.csv` columns
33
+
34
+ | Column | Description |
35
+ |---|---|
36
+ | `file_name` | Relative path to the image (e.g. `images/1.jpg`) |
37
+ | `image_id` | Image index (1–402) |
38
+ | `index` | Question index within the image (1, 2, …) |
39
+ | `uuid` | Unique question ID (e.g. `wtb_001_q1`) |
40
+ | `question` | Question text |
41
+ | `category` | Category ID (C1–C5) |
42
+ | `category_name` | Category name |
43
+ | `subtype_id` | Subtype ID (e.g. `C2-C`) |
44
+ | `subtype_name` | Subtype name |
45
+ | `ground_truth` | Ground truth answer |
46
+
47
+ ## Question Categories
48
 
49
  | ID | Name | Subtypes |
50
+ |---|---|---|
51
+ | C1 | Cell-Level | Transcription, Cell Locating, Semantic Lookup & Struct., Excel Formula |
52
+ | C2 | Numerical | Basic Numerical, Conditional Numerical, Multi-step Conditional, Ranking |
53
+ | C3 | Verification | Value Verification, Aggregate Verification, Conditional Verification |
54
+ | C4 | Hypothetical | Hypothetical Condition, Value Modification, Row Operation |
55
+ | C5 | Color | Color Identification, Color-based Counting, Color-based Reasoning |
56
+
57
+ ## Usage
58
+
59
+ ```python
60
+ from datasets import load_dataset
61
+
62
+ dataset = load_dataset("jzhuang/WildTableBench")
63
+ ```
64
+
65
+ ## Citation
66
+
67
+ ```bibtex
68
+ @article{wildtablebench2025,
69
+ title={WildTableBench: Benchmarking Multimodal Foundation Models on Table Understanding In the Wild},
70
+ author={Junzhe Huang et al.},
71
+ year={2025}
72
+ }
73
+ ```