File size: 2,549 Bytes
3c5c684
1de7ee2
19be410
1de7ee2
 
 
 
 
 
 
 
 
 
3c5c684
 
 
 
 
3aff92d
3c5c684
 
 
 
 
 
 
 
 
3aff92d
3c5c684
 
3aff92d
3c5c684
3aff92d
 
3c5c684
 
 
 
 
 
1de7ee2
 
 
 
 
 
 
 
19be410
 
 
 
1de7ee2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19be410
 
 
 
 
 
 
 
 
1de7ee2
19be410
1de7ee2
19be410
1de7ee2
19be410
 
 
 
 
 
 
 
 
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
---
license: mit
arxiv: 2503.11557
task_categories:
- image-to-text
language:
- en
tags:
- MLLM
- Reasoning
pretty_name: VERIFY
size_categories:
- n<1K
dataset_info:
  features:
  - name: uid
    dtype: string
  - name: image
    dtype: image
  - name: question
    dtype: string
  - name: options
    sequence: string
  - name: reasoning
    dtype: string
  - name: answer
    dtype: string
  - name: year
    dtype: int32
  splits:
  - name: test
    num_bytes: 4313494.0
    num_examples: 50
  download_size: 4289292
  dataset_size: 4313494.0
configs:
- config_name: default
  data_files:
  - split: test
    path: data/test-*
---
# VERIFY: A Benchmark of Visual Explanation and Reasoning for Investigating Multimodal Reasoning FidelitY

**VERIFY** is **the first** benchmark explicitly designed to assess the reasoning paths of MLLMs in visual reasoning tasks. 
By introducing novel evaluation metrics that go beyond mere accuracy, VERIFY highlights critical limitations in current MLLMs and emphasizes the need for a more balanced approach to visual perception and logical reasoning.


Details of the benchmark can viewed at the [VERIFY project page](https://proj-verify.jing.vision/).

🔔 **Teaser:**  
This teaser is provided for interested users. Simply copy and paste the image to quickly try out the advanced O1 or Gemini model.


## Usage


You can download this dataset by the following command (make sure that you have installed Huggingface Datasets):
```python
from datasets import load_dataset
from IPython.display import display
dataset = load_dataset("jing-bi/verify-teaser")
example = dataset["test"][0]
print("Full example:", example)
display(example['image'])
print("Problem ID:", example['uid'])
print("Question:", example['question'])
print("Options:", example['options'])
print("Reasoning:", example['reasoning'])
print("Answer:", example['answer'])
```

---

## Contact

For any questions or further information, please contact:

- **Jing Bi** – [jing.bi@rochester.edu](mailto:jing.bi@rochester.edu)

---

## Citation

If you find this work useful in your research, please consider citing our paper:

```bibtex
@misc{bi2025verify,
    title={VERIFY: A Benchmark of Visual Explanation and Reasoning for Investigating Multimodal Reasoning Fidelity},
    author={Jing Bi and Junjia Guo and Susan Liang and Guangyu Sun and Luchuan Song and Yunlong Tang and Jinxi He and Jiarui Wu and Ali Vosoughi and Chen Chen and Chenliang Xu},
    year={2025},
    eprint={2503.11557},
    archivePrefix={arXiv},
    primaryClass={cs.CV}
}