File size: 4,629 Bytes
60c138c d398b95 e227f73 d398b95 60c138c ea4edc5 60c138c d398b95 60c138c ea4edc5 60c138c 1ddaf73 5bbd351 02f2601 a2e5c8f 48c4492 abadf73 75165d3 abadf73 88c9ae2 e5d2db1 c418ad6 8fa60bf ac9d547 59d3753 88c9ae2 00bda8c 88c9ae2 |
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
---
dataset_info:
- config_name: attribute_grounding_and_alignment
features:
- name: idx
dtype: int32
- name: imgname
dtype: string
- name: chart_type
dtype: string
- name: attribute
dtype: string
- name: chart_1_grounding
dtype: string
- name: chart_2_grounding
dtype: string
- name: alignment_json
dtype: string
- name: image_pair
dtype: image
splits:
- name: test
num_bytes: 144273203.125
num_examples: 1751
download_size: 140665127
dataset_size: 144273203.125
- config_name: data_grounding_and_alignment
features:
- name: idx
dtype: int32
- name: imgname
dtype: string
- name: chart_type
dtype: string
- name: num_cell_difference
dtype: int32
- name: chart_1_grounding
dtype: string
- name: chart_2_grounding
dtype: string
- name: alignment_json
dtype: string
- name: image_pair
dtype: image
splits:
- name: test
num_bytes: 391677829.125
num_examples: 4287
download_size: 382856565
dataset_size: 391677829.125
- config_name: robustness
features:
- name: idx
dtype: int32
- name: set_idx
dtype: int32
- name: set_pair_idx
dtype: int32
- name: imgname
dtype: string
- name: chart_type
dtype: string
- name: num_cell_difference
dtype: int32
- name: attribute_varied
dtype: string
- name: alignment_json
dtype: string
- name: image_pair
dtype: image
splits:
- name: test
num_bytes: 1339741262.125
num_examples: 16575
download_size: 1277778734
dataset_size: 1339741262.125
configs:
- config_name: attribute_grounding_and_alignment
data_files:
- split: test
path: attribute_grounding_and_alignment/test-*
- config_name: data_grounding_and_alignment
data_files:
- split: test
path: data_grounding_and_alignment/test-*
- config_name: robustness
data_files:
- split: test
path: robustness/test-*
---
## π ChartAlignBench
[**π Paper**](https://arxiv.org/abs/2510.26781) | [**π» GitHub**](https://github.com/tianyi-lab/ChartAlignBench/)
ChartAlignBench is a multi-modal benchmark designed to evaluate vision-language models (VLMs) on dense-level chart grounding and multi-chart alignment to comprehensively assess fine-grained chart understanding in VLMs.
### π Overview
ChartAlignBench contains 9K+ instances, divided into three evaluation subsets:-
1. Data Grounding & Alignment: Paired charts differ in underlying data values visualized by the chart.
2. Attribute Grounding & Alignment: Paired charts differ in visualization attribute e.g., color, legend or text style.
3. Robustness: Multiple variants of paired charts for Data Alignment, with different attributes across variants.
<p align="left">
<img src="dataset_examples.png" width="85%">
<em>Examples of chart pairs in ChartAlignBench.</em>
</p>
### π Instruction
For each subset, the test*.parquet files contain the annotations and image pairs pre-loaded for processing with HF Datasets.
```
from datasets import load_dataset
data_grounding_and_alignment_subset = load_dataset("umd-zhou-lab/ChartAlignBench", "data_grounding_and_alignment")
attribute_grounding_and_alignment_subset = load_dataset("umd-zhou-lab/ChartAlignBench", "attribute_grounding_and_alignment")
robustness_subset = load_dataset("umd-zhou-lab/ChartAlignBench", "robustness")
```
### π Dataset Description
#### Common fields (all subsets)
| Field | Description |
|-------|---------------|
|idx | Unique index of the sample in the set |
|imgname | Name of the chart image |
|chart_type | Type of chart|
|alignment_json | Alignment label for the chart pair |
|image_pair | Image of horizontally stitched chart pair (PIL.Image) |
#### Data Grounding and Alignment
| Field | Description |
|-------|---------------|
|num_cell_difference | Number of data points which differ between the chart pair |
|chart_1_grounding | Grounding label for chart 1 (csv table) |
|chart_2_grounding | Grounding label for chart 2 (csv table) |
#### Attribute Grounding and Alignment
| Field | Description |
|-------|---------------|
|attribute | Attribute which differs between the chart pair |
|chart_1_grounding | Grounding label for chart 1 (json) |
|chart_2_grounding | Grounding label for chart 2 (json) |
#### Robustness
| Field | Description |
|-------|---------------|
| set_idx | Set index which groups the 5 chart pairs in a robustness set |
| set_pair_idx | Pair index within a set (1-5) |
|num_cell_difference | Number of data points which differ between the chart pair |
|attribute_varied | Attribute which varies across the 5 chart pairs |
|