Datasets:

Modalities:
Image
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
License:
shivalikasingh commited on
Commit
bdb1633
·
verified ·
1 Parent(s): a252ab6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md CHANGED
@@ -487,3 +487,65 @@ 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
+ ### Dataset Details
495
+
496
+ The m-WildVision dataset is a multilingual multimodal LLM evaluation set. This dataset was created by translating the prompts from the originally English-only [WildVision (vision_bench_0617)](https://arxiv.org/abs/2406.11069) test dataset using Google Translate API v3 to 22 languages.
497
+ The original English-only prompts were created by Lu et al. (2024) and consist of 500 challenging user queries sourced from their WildVision-Arena platform.
498
+ The authors show that these can be used to perform automatic LLM judge evaluations, which exhibit a high correlation with WildVision-Arena rankings.
499
+
500
+ ### Languages:
501
+
502
+ This dataset covers 23 languages: 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).
503
+
504
+
505
+
506
+ ### Load with Datasets
507
+
508
+ To load this dataset with Datasets, you'll need to install Datasets as `pip install datasets --upgrade` and then use the following code:
509
+
510
+ ```python
511
+ from datasets import load_dataset
512
+
513
+ dataset = load_dataset("CohereForAI/m-WildVision", "eng_Latn")
514
+ ```
515
+
516
+ 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.
517
+
518
+
519
+ ### Dataset Structure
520
+
521
+ An instance of the data from the English subset looks as follows:
522
+
523
+ ```python
524
+ {'question_id': a711a80b19c040c2a98364b5e181b020,
525
+ 'language': 'eng_Latn',
526
+ '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?'
527
+ 'image': [PIL.Image],
528
+ }
529
+ ```
530
+
531
+ ### Dataset Fields
532
+
533
+ The following are the fields in the dataset:
534
+
535
+ - question_id: a unique ID for the example
536
+ - language: The language of the sample, indicating the subset to which it belongs.
537
+ - instruction: text of the prompt (question or instruction)
538
+ - image: The raw image data in .jpg format.
539
+
540
+
541
+ All language subsets of the dataset share the same fields as above.
542
+
543
+ ### Authorship
544
+
545
+ - Publishing Organization: [Cohere For AI](https://cohere.com/research)
546
+ - Industry Type: Not-for-profit - Tech
547
+ - Contact Details: https://cohere.com/research/aya
548
+
549
+ ### Licensing Information
550
+
551
+ This dataset can be used for any purpose, whether academic or commercial, under the terms of the Apache 2.0 License.