Datasets:
Update README.md (#1)
Browse files- Update README.md (bdb1633d0e04fe43f1520ed93bbd834b99cd4335)
- Update README.md (29769bccef71a3baf509d8ec21e01feb4b88fb60)
- Upload mwildvision2.png (af19abff89f6a76c26ac16bc6e006270f5e44a08)
- Update README.md (9f086d2853bb3f720bc1fc084ea936cd2a663576)
- README.md +66 -0
- mwildvision2.png +3 -0
README.md
CHANGED
@@ -487,3 +487,69 @@ language:
|
|
487 |
- vi
|
488 |
license: apache-2.0
|
489 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
487 |
- vi
|
488 |
license: apache-2.0
|
489 |
---
|
490 |
+
|
491 |
+
|
492 |
+
## Dataset Card for m-WildVision
|
493 |
+
|
494 |
+
<img src="mwildvision2.png" width="650" style="margin-left:'auto' margin-right:'auto' display:'block'"/>
|
495 |
+
|
496 |
+
### Dataset Details
|
497 |
+
|
498 |
+
The m-WildVision dataset is a multilingual multimodal LLM evaluation set covering **23 languages**. It was created by translating prompts from the original English-only [WildVision (vision_bench_0617)](https://arxiv.org/abs/2406.11069) test set.
|
499 |
+
The original prompts, developed by [Lu et al. (2024)](https://arxiv.org/abs/2406.11069) , consist of 500 challenging user queries sourced from the WildVision-Arena platform.
|
500 |
+
The authors demonstrated that these prompts enable automatic LLM judge evaluations, which strongly correlate with WildVision-Arena rankings.
|
501 |
+
|
502 |
+
### Languages:
|
503 |
+
|
504 |
+
To ensure multilingual coverage, the non-English portion of the dataset was generated by translating the English subset into 22 additional languages using Google Translate API v3. The dataset includes a diverse range of language families (such as Latin-based languages like French, German, Arabic families like Persian and Arabic, and East Asian languages like Chinese, Korean, and Japanese) and scripts, ensuring a comprehensive evaluation of model generalizability and robustness.
|
505 |
+
|
506 |
+
The languages included are: Arabic (arb_Arab), Chinese (zho_Hans), Czech (ces_Latn), Dutch (nld_Latn), English (eng_Latn), French (fra_Latn), German (deu_Latn), Greek (ell_Grek), Hebrew (heb_Hebr), Hindi (hin_Deva), Indonesian (ind_Latn), Italian (ita_Latn), Japanese (jpn_Jpan), Korean (kor_Hang), Persian (fas_Arab), Polish (pol_Latn), Portuguese (por_Latn), Romanian (ron_Latn), Russian (rus_Cyrl), Spanish (spa_Latn), Turkish (tur_Latn), Ukrainian (ukr_Cyrl), and Vietnamese (vie_Latn).
|
507 |
+
|
508 |
+
By incorporating languages from different families and scripts, this benchmark enables a **comprehensive assessment of vision-language models**, particularly their ability to generalize across diverse languages.
|
509 |
+
|
510 |
+
### Load with Datasets
|
511 |
+
|
512 |
+
To load this dataset with Datasets, you'll need to install Datasets as `pip install datasets --upgrade` and then use the following code:
|
513 |
+
|
514 |
+
```python
|
515 |
+
from datasets import load_dataset
|
516 |
+
|
517 |
+
dataset = load_dataset("CohereForAI/m-WildVision", "eng_Latn")
|
518 |
+
```
|
519 |
+
|
520 |
+
The above code block will load only the English subset of the entire dataset. You can load other subsets by specifying other supported languages of interest or the entire dataset by leaving that argument as blank.
|
521 |
+
|
522 |
+
|
523 |
+
### Dataset Structure
|
524 |
+
|
525 |
+
An instance of the data from the English subset looks as follows:
|
526 |
+
|
527 |
+
```python
|
528 |
+
{'question_id': a711a80b19c040c2a98364b5e181b020,
|
529 |
+
'language': 'eng_Latn',
|
530 |
+
'question': 'How many workers are working in the construction site? Are all of them wearing the safety equipments? If no, who are not wearing them?'
|
531 |
+
'image': [PIL.Image],
|
532 |
+
}
|
533 |
+
```
|
534 |
+
|
535 |
+
### Dataset Fields
|
536 |
+
|
537 |
+
The following are the fields in the dataset:
|
538 |
+
|
539 |
+
- question_id: a unique ID for the example
|
540 |
+
- language: The language of the sample, indicating the subset to which it belongs.
|
541 |
+
- instruction: text of the prompt (question or instruction)
|
542 |
+
- image: The raw image data in .jpg format.
|
543 |
+
|
544 |
+
|
545 |
+
All language subsets of the dataset share the same fields as above.
|
546 |
+
|
547 |
+
### Authorship
|
548 |
+
|
549 |
+
- Publishing Organization: [Cohere For AI](https://cohere.com/research)
|
550 |
+
- Industry Type: Not-for-profit - Tech
|
551 |
+
- Contact Details: https://cohere.com/research/aya
|
552 |
+
|
553 |
+
### Licensing Information
|
554 |
+
|
555 |
+
This dataset can be used for any purpose, whether academic or commercial, under the terms of the Apache 2.0 License.
|
mwildvision2.png
ADDED
![]() |
Git LFS Details
|