Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
2 |
dataset_info:
|
3 |
features:
|
4 |
- name: images
|
@@ -23,3 +27,37 @@ configs:
|
|
23 |
- split: test
|
24 |
path: data/test-*
|
25 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
size_categories:
|
3 |
+
- n<1K
|
4 |
+
task_categories:
|
5 |
+
- visual-question-answering
|
6 |
dataset_info:
|
7 |
features:
|
8 |
- name: images
|
|
|
27 |
- split: test
|
28 |
path: data/test-*
|
29 |
---
|
30 |
+
|
31 |
+
# JA-Multi-Image-VQA
|
32 |
+
|
33 |
+
|
34 |
+
## Dataset Description
|
35 |
+
**JA-Multi-Image-VQA** is a dataset for evaluating the question answering capabilities on multiple image inputs.
|
36 |
+
We carefully collected a diverse set of 39 images with 55 questions in total.
|
37 |
+
|
38 |
+
Some images contain Japanese culture and objects in Japan. The Japanese questions and answers were generated manually.
|
39 |
+
|
40 |
+
<!-- To evaluate Japanese VLMs, please go to [our Github repository](https://github.com/SakanaAI/evolutionary-model-merge). -->
|
41 |
+
|
42 |
+
## Usage
|
43 |
+
|
44 |
+
```python
|
45 |
+
from datasets import load_dataset
|
46 |
+
dataset = load_dataset("SakanaAI/JA-Multi-Image-VQA", split="test")
|
47 |
+
```
|
48 |
+
|
49 |
+
## Uses
|
50 |
+
The images in this dataset are sourced from Unsplash and are free to use under the Unsplash License.
|
51 |
+
They cannot be sold without significant modification and cannot be used to replicate similar or competing services.
|
52 |
+
|
53 |
+
All parts of this dataset, other than the images, are licensed under the Apache 2.0 License.
|
54 |
+
|
55 |
+
## Citation
|
56 |
+
|
57 |
+
```bibtex
|
58 |
+
@misc{Llama-3-EvoVLM-JP-v2,
|
59 |
+
url = {[https://huggingface.co/SakanaAI/Llama-3-EvoVLM-JP-v2](https://huggingface.co/SakanaAI/Llama-3-EvoVLM-JP-v2)},
|
60 |
+
title = {Llama-3-EvoVLM-JP-v2},
|
61 |
+
author = {Yuichi, Inoue and Takuya, Akiba and Shing, Makoto}
|
62 |
+
}
|
63 |
+
```
|