Update README.md
Browse files
README.md
CHANGED
@@ -462,3 +462,82 @@ configs:
|
|
462 |
- split: test
|
463 |
path: zh/test-*
|
464 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
462 |
- split: test
|
463 |
path: zh/test-*
|
464 |
---
|
465 |
+
|
466 |
+
|
467 |
+
## Dataset Card for m-ArenaHard
|
468 |
+
|
469 |
+
### Dataset Details
|
470 |
+
|
471 |
+
The m-ArenaHard dataset is a multilingual LLM evaluation set. This dataset was created by translating the prompts from the originally English-only LMarena (formerly LMSYS) arena-hard-auto-v0.1 test dataset using Google Translate API v3 to 22 languages. The original English-only prompts were created by Li et al. (2024) and consist of 500 challenging user queries sourced from Chatbot Arena. The authors show that these can be used to perform automatic LLM judge evaluations, which exhibit a high correlation with Chatbot Arena rankings.
|
472 |
+
The 23 languages included in this dataset:
|
473 |
+
|
474 |
+
- Arabic (ar)
|
475 |
+
- Chinese (zh)
|
476 |
+
- Czech (cs)
|
477 |
+
- Dutch (nl)
|
478 |
+
- English (en)
|
479 |
+
- French (fr)
|
480 |
+
- German (de)
|
481 |
+
- Greek (el)
|
482 |
+
- Hebrew (he)
|
483 |
+
- Hindi (hi)
|
484 |
+
- Indonesian (id)
|
485 |
+
- Italian (it)
|
486 |
+
- Japanese (ja)
|
487 |
+
- Korean (ko)
|
488 |
+
- Persian (fa)
|
489 |
+
- Polish (pl)
|
490 |
+
- Portuguese (pt)
|
491 |
+
- Romanian (ro)
|
492 |
+
- Russian (ru)
|
493 |
+
- Spanish (es)
|
494 |
+
- Turkish (tr)
|
495 |
+
- Ukrainian (uk)
|
496 |
+
- Vietnamese (vi)
|
497 |
+
|
498 |
+
|
499 |
+
### Load with Datasets
|
500 |
+
|
501 |
+
To load this dataset with Datasets, you'll need to install Datasets as pip install datasets --upgrade and then use the following code:
|
502 |
+
|
503 |
+
```python
|
504 |
+
from datasets import load_dataset
|
505 |
+
|
506 |
+
dataset = load_dataset("CohereForAI/m_ArenaHard", "en")
|
507 |
+
```
|
508 |
+
|
509 |
+
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.
|
510 |
+
|
511 |
+
|
512 |
+
### Dataset Structure
|
513 |
+
|
514 |
+
An instance of the data from the Persian subset looks as follows:
|
515 |
+
|
516 |
+
```python
|
517 |
+
{'question_id': '328c149ed45a41c0b9d6f14659e63599',
|
518 |
+
'cluster': 'Acrobat PDF Management Tips',
|
519 |
+
'category': 'arena-hard-v0.1',
|
520 |
+
'prompt': 'چگونه نوار ابزار را در یک قطعه اضافه کنیم؟'
|
521 |
+
}
|
522 |
+
```
|
523 |
+
|
524 |
+
### Dataset Fields
|
525 |
+
|
526 |
+
The following are the fields in the dataset:
|
527 |
+
|
528 |
+
- question_id: a unique ID for the example
|
529 |
+
- cluster: the topic of the example
|
530 |
+
- category: the original dataset where the example is from
|
531 |
+
- prompt: text of the prompt (question or instruction)
|
532 |
+
|
533 |
+
All language subsets of the dataset share the same fields as above.
|
534 |
+
|
535 |
+
### Authorship
|
536 |
+
|
537 |
+
- Publishing Organization: [Cohere For AI](https://cohere.com/research)
|
538 |
+
- Industry Type: Not-for-profit - Tech
|
539 |
+
- Contact Details: https://cohere.com/research/aya
|
540 |
+
|
541 |
+
### Licensing Information
|
542 |
+
|
543 |
+
This dataset can be used for any purpose, whether academic or commercial, under the terms of the Apache 2.0 License.
|