LockOnN commited on
Commit
6080413
·
verified ·
1 Parent(s): baa5123

Cite OpenVisTool paper

Browse files
Files changed (1) hide show
  1. README.md +97 -0
README.md CHANGED
@@ -82,6 +82,103 @@ The `source_dataset` field preserves the source label for every example.
82
 
83
  ## Upstream source and license review
84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  | Source label | Canonical source | License |
86
  |---|---|---|
87
  | `CharXiv` | https://huggingface.co/datasets/princeton-nlp/CharXiv | CC BY-SA 4.0 |
 
82
 
83
  ## Upstream source and license review
84
 
85
+ | Source label | Canonical source | License |
86
+ |---|---|---|
87
+ | `CharXiv` | https://huggingface.co/datasets/princeton-nlp/CharXiv | CC BY-SA 4.0 |
88
+ | `ChartMuseum` | https://huggingface.co/datasets/lytang/ChartMuseum | CC BY-SA 4.0 |
89
+ | `MMTBench` | https://huggingface.co/datasets/Kaining/MMT-Bench | MIT |
90
+ | `TableVQA-Bench` | https://github.com/naver-ai/tablevqabench | MIT |
91
+ | `VisualProbe_Hard` | https://mini-o3.github.io/ | CC BY-NC 4.0 |
92
+ | `ScreenSpot-Pro` | https://huggingface.co/datasets/likaixin/ScreenSpot-Pro | MIT |
93
+ | `Vision2Web-webpage` | https://huggingface.co/datasets/zai-org/Vision2Web | CC BY-NC-SA 4.0 |
94
+
95
+ ## Citation
96
+
97
+ This repository accompanies [OpenVisTool: An Open Recipe for Synthesizing Instructive Visual Tool-Use Trajectories](https://arxiv.org/abs/2608.08557).
98
+ ---
99
+ pretty_name: OpenVisTool-Bench
100
+ license: other
101
+ language:
102
+ - en
103
+ task_categories:
104
+ - visual-question-answering
105
+ - image-to-text
106
+ tags:
107
+ - multimodal
108
+ - tool-use
109
+ - agentic-vision
110
+ - visual-reasoning
111
+ - gui-grounding
112
+ - web-to-html
113
+ size_categories:
114
+ - n<1K
115
+ configs:
116
+ - config_name: chart
117
+ data_files:
118
+ - split: test
119
+ path: data/chart.jsonl
120
+ - config_name: table
121
+ data_files:
122
+ - split: test
123
+ path: data/table.jsonl
124
+ - config_name: visual_search
125
+ data_files:
126
+ - split: test
127
+ path: data/visual_search.jsonl
128
+ - config_name: gui_grounding
129
+ data_files:
130
+ - split: test
131
+ path: data/gui_grounding.jsonl
132
+ - config_name: web_to_html
133
+ data_files:
134
+ - split: test
135
+ path: data/web_to_html.jsonl
136
+ ---
137
+
138
+ # OpenVisTool-Bench
139
+
140
+ OpenVisTool-Bench is a 559-example, five-domain benchmark for visual agents
141
+ that can call inspection and editing tools. All five configurations use the
142
+ `test` split.
143
+
144
+ ## Configurations
145
+
146
+ | Configuration | Domain | Items | Metadata |
147
+ |---|---|---:|---|
148
+ | `chart` | Chart reasoning | 110 | `data/chart.jsonl` |
149
+ | `table` | Table reasoning | 126 | `data/table.jsonl` |
150
+ | `visual_search` | Fine-grained visual search | 106 | `data/visual_search.jsonl` |
151
+ | `gui_grounding` | GUI grounding | 117 | `data/gui_grounding.jsonl` |
152
+ | `web_to_html` | Web-to-HTML generation | 100 | `data/web_to_html.jsonl` |
153
+
154
+ The `visual_search` and `web_to_html` configurations are direct subsets of
155
+ existing public datasets, not newly authored evaluation data. Specifically,
156
+ all 106 Visual Search examples come from
157
+ [VisualProbe_Hard](https://huggingface.co/datasets/Mini-o3/VisualProbe_Hard), and all 100 Web-to-HTML tasks
158
+ come from the `Vision2Web-webpage` portion of
159
+ [Vision2Web](https://huggingface.co/datasets/zai-org/Vision2Web).
160
+
161
+ The metadata uses the layout consumed by the accompanying OpenVisTool
162
+ evaluation code. Every image path resolves as
163
+ `data/images/<source_dataset>/<images[i]>`. Each Web-to-HTML task also includes
164
+ its resource directory and `workflow.json` under the same source-dataset root.
165
+
166
+ ## Source composition
167
+
168
+ | Configuration | Upstream source | Items |
169
+ |---|---|---:|
170
+ | `chart` | [CharXiv](https://huggingface.co/datasets/princeton-nlp/CharXiv) | 55 |
171
+ | `chart` | [ChartMuseum](https://huggingface.co/datasets/lytang/ChartMuseum) | 55 |
172
+ | `table` | [MMT-Bench](https://huggingface.co/datasets/Kaining/MMT-Bench) | 112 |
173
+ | `table` | [TableVQA-Bench](https://github.com/naver-ai/tablevqabench) | 14 |
174
+ | `visual_search` | [VisualProbe_Hard](https://mini-o3.github.io/) | 106 |
175
+ | `gui_grounding` | [ScreenSpot-Pro](https://huggingface.co/datasets/likaixin/ScreenSpot-Pro) | 117 |
176
+ | `web_to_html` | [Vision2Web-webpage](https://huggingface.co/datasets/zai-org/Vision2Web) | 100 |
177
+
178
+ The `source_dataset` field preserves the source label for every example.
179
+
180
+ ## Upstream source and license review
181
+
182
  | Source label | Canonical source | License |
183
  |---|---|---|
184
  | `CharXiv` | https://huggingface.co/datasets/princeton-nlp/CharXiv | CC BY-SA 4.0 |