Datasets:

Modalities:
Image
Text
Formats:
parquet
Languages:
Japanese
ArXiv:
License:
secret13 commited on
Commit
ed6035f
·
verified ·
1 Parent(s): 18537d5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +83 -0
README.md CHANGED
@@ -168,4 +168,87 @@ configs:
168
  - split: test
169
  path: JGraphQA-Refined/test-*
170
  default: true
 
 
 
 
 
171
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  - split: test
169
  path: JGraphQA-Refined/test-*
170
  default: true
171
+ license: other
172
+ language:
173
+ - ja
174
+ size_categories:
175
+ - 1K<n<10K
176
  ---
177
+
178
+
179
+
180
+ ## Overview
181
+
182
+ JAMMEval is a curated benchmark collection for evaluating Vision-Language Models (VLMs) on Japanese Visual Question Answering (VQA) tasks.
183
+ It is constructed by refining seven existing Japanese VQA evaluation datasets through two rounds of human annotation, with the goal of improving evaluation reliability and quality.
184
+
185
+ ## Included Datasets
186
+
187
+ JAMMEval consists of the following seven refined datasets:
188
+
189
+ - CC-OCR-JA-Refined
190
+ - CVQA-JA-Refined
191
+ - Heron-Bench-Refined
192
+ - JA-Multi-Image-VQA-Refined
193
+ - JA-VLM-Bench-Refined
194
+ - JDocQA-Refined
195
+ - JGraphQA-Refined
196
+
197
+ Each dataset is derived from its original version (without the `-Refined` suffix) through a systematic refinement process.
198
+
199
+ ## Refinement Process
200
+
201
+ The refinement focuses on addressing key issues found in the original datasets:
202
+
203
+ - Ambiguity in questions or answers
204
+ - Incorrect annotated answers
205
+ - Questions solvable without visual input (i.e., not requiring the image)
206
+
207
+ Through manual inspection and correction, JAMMEval improves the reliability of VLM evaluation, ensuring that tasks genuinely require multimodal understanding.
208
+
209
+ ## Dataset Usage
210
+
211
+ ```python
212
+ from datasets import load_dataset
213
+
214
+ ds = load_dataset("secret13/JAMMEval", "Heron-Bench-Refined", split="test")
215
+
216
+ print(ds)
217
+ ```
218
+
219
+ Example output:
220
+ ```
221
+ Dataset({
222
+ features: ['original_id', 'image', 'question', 'answer', 'ocr', 'image_name'],
223
+ num_rows: 145
224
+ })
225
+ ```
226
+
227
+
228
+ ## License
229
+ Each dataset is derived from its original source dataset and is subject to the license terms of the original dataset.
230
+ - [CC-OCR](https://arxiv.org/abs/2412.02210)
231
+ - MIT
232
+ - [CVQA](https://arxiv.org/abs/2406.05967):
233
+ - > Note that each question has its own license. All data here is free to use for research purposes, but not every entry is permissible for commercial use.
234
+ - [Heron-Bench](https://arxiv.org/abs/2404.07824)
235
+ - > We have collected images that are either in the public domain or licensed under Creative Commons Attribution 1.0 (CC BY 1.0) or Creative Commons Attribution 2.0 (CC BY 2.0). Please refer to the LICENSE.md file for details on the licenses.
236
+ - [JA-Multi-Image-VQA](https://huggingface.co/datasets/SakanaAI/JA-Multi-Image-VQA)
237
+ - The images in this dataset are sourced from Unsplash and are free to use under the Unsplash License. They cannot be sold without significant modification and cannot be used to replicate similar or competing services. All other parts of this dataset, excluding the images, are licensed under the Apache 2.0 License.
238
+ - [JA-VLM-Bench](https://huggingface.co/datasets/SakanaAI/JA-VLM-Bench-In-the-Wild)
239
+ - > The images in this dataset are sourced from Unsplash and are free to use under the Unsplash License. They cannot be sold without significant modification and cannot be used to replicate similar or competing services.
240
+ - [JDocQA](https://arxiv.org/abs/2403.19454)
241
+ - > JDocQA dataset annotations are distributed under CC BY-SA 4.0. We are delighted to see many derivations from JDocQA! When you create any derivations, e.g., datasets, papers, etc, from JDocQA, please cite our paper accordingly. If your derivations are web-based projects, please cite our paper and include the link to this github page.
242
+ - [JGraphQA](https://huggingface.co/datasets/r-g2-2024/JGraphQA)
243
+ - License information is not clearly specified. Users should verify the original source before use.
244
+
245
+ ⚠️ Since JAMMEval is a collection of datasets with different licenses,
246
+ users must check the license of each individual dataset and each data entry (if applicable) before use. In particular, some datasets (e.g., CVQA) may include data that is restricted to non-commercial use.
247
+
248
+ **Note on JDocQA-Refined Images**
249
+
250
+ The images included in JDocQA-Refined must be used in compliance with Japanese copyright law:
251
+
252
+ > "Use is permitted only within the scope defined by Article 30-4 of the Japanese Copyright Act."
253
+
254
+ Users are responsible for ensuring that their use of these images complies with applicable regulations.