diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/README.md b/lm-evaluation/build/lib/lm_eval/tasks/belebele/README.md new file mode 100644 index 0000000000000000000000000000000000000000..e08e63e8a11b563dad771f8ee99a1da167e55016 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/README.md @@ -0,0 +1,49 @@ +# Belebele + +### Paper + +The Belebele Benchmark for Massively Multilingual NLU Evaluation +https://arxiv.org/abs/2308.16884 + +Belebele is a multiple-choice machine reading comprehension (MRC) dataset spanning 122 language variants. This dataset enables the evaluation of mono- and multi-lingual models in high-, medium-, and low-resource languages. Each question has four multiple-choice answers and is linked to a short passage from the FLORES-200 dataset. The human annotation procedure was carefully curated to create questions that discriminate between different levels of generalizable language comprehension and is reinforced by extensive quality checks. While all questions directly relate to the passage, the English dataset on its own proves difficult enough to challenge state-of-the-art language models. Being fully parallel, this dataset enables direct comparison of model performance across all languages. Belebele opens up new avenues for evaluating and analyzing the multilingual abilities of language models and NLP systems. + +Homepage: https://github.com/facebookresearch/belebele + +### Citation + +```bibtex +@misc{bandarkar2023belebele, + title={The Belebele Benchmark: a Parallel Reading Comprehension Dataset in 122 Language Variants}, + author={Lucas Bandarkar and Davis Liang and Benjamin Muller and Mikel Artetxe and Satya Narayan Shukla and Donald Husa and Naman Goyal and Abhinandan Krishnan and Luke Zettlemoyer and Madian Khabsa}, + year={2023}, + eprint={2308.16884}, + archivePrefix={arXiv}, + primaryClass={cs.CL} +} +``` + +### Groups and Tasks + +#### Groups + +- `belebele`: All 122 languages of the Belebele dataset, evaluated following the methodology in MMLU's original implementation. + +#### Tasks + + +The following tasks evaluate languages in the Belebele dataset using loglikelihood-based multiple-choice scoring: +- `belebele_{language}` + +The variant evaluated here is the 0-shot or few-shot evaluation with English Instructions. + +### Checklist + +* [x] Is the task an existing benchmark in the literature? + * [x] Have you referenced the original paper that introduced the task? + * [x] If yes, does the original paper provide a reference implementation? + * [ ] Yes, original implementation contributed by author of the benchmark + +If other tasks on this dataset are already supported: +* [x] Is the "Main" variant of this task clearly denoted? +* [x] Have you provided a short sentence in a README on what each new variant adds / evaluates? +* [ ] Have you noted which, if any, published evaluation setups are matched by this variant? diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/_generate_configs.py b/lm-evaluation/build/lib/lm_eval/tasks/belebele/_generate_configs.py new file mode 100644 index 0000000000000000000000000000000000000000..af6aa824a6229923ec3fdd821f1ff1d1d2656112 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/_generate_configs.py @@ -0,0 +1,66 @@ +""" +Take in a YAML, and output all other splits with this YAML +""" +import argparse +import os + +import requests +import yaml +from tqdm import tqdm + +from lm_eval.utils import logging + + +API_URL = "https://datasets-server.huggingface.co/splits?dataset=facebook/belebele" + + +def parse_args(): + parser = argparse.ArgumentParser() + parser.add_argument("--base_yaml_path", required=True) + parser.add_argument("--save_prefix_path", default="belebele") + parser.add_argument("--cot_prompt_path", default=None) + parser.add_argument("--task_prefix", default="") + return parser.parse_args() + + +if __name__ == "__main__": + args = parse_args() + + # get filename of base_yaml so we can `"include": ` it in our other YAMLs. + base_yaml_name = os.path.split(args.base_yaml_path)[-1] + with open(args.base_yaml_path, encoding="utf-8") as f: + base_yaml = yaml.full_load(f) + + if args.cot_prompt_path is not None: + import json + + with open(args.cot_prompt_path, encoding="utf-8") as f: + cot_file = json.load(f) + + def query(): + response = requests.get(API_URL) + return response.json()["splits"] + + print(query()) + languages = [split["split"] for split in query()] + + for lang in tqdm([lang for lang in languages if "default" not in lang]): + yaml_dict = { + "include": base_yaml_name, + "task": f"belebele_{args.task_prefix}_{lang}" + if args.task_prefix != "" + else f"belebele_{lang}", + "test_split": lang, + "fewshot_split": lang, + } + + file_save_path = args.save_prefix_path + f"_{lang}.yaml" + logging.info(f"Saving yaml for subset {lang} to {file_save_path}") + with open(file_save_path, "w", encoding="utf-8") as yaml_file: + yaml.dump( + yaml_dict, + yaml_file, + width=float("inf"), + allow_unicode=True, + default_style='"', + ) diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_als_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_als_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f77ed55f10897c8efed0977abe9db4272227825e --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_als_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "als_Latn" +"include": "_default_template_yaml" +"task": "belebele_als_Latn" +"test_split": "als_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_amh_Ethi.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_amh_Ethi.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e3d61066cf9ccdce81c9c5b91682c1616cc28e6a --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_amh_Ethi.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "amh_Ethi" +"include": "_default_template_yaml" +"task": "belebele_amh_Ethi" +"test_split": "amh_Ethi" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_arb_Arab.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_arb_Arab.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b6242fd38b2666f496751b8ed03639f712f350e3 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_arb_Arab.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "arb_Arab" +"include": "_default_template_yaml" +"task": "belebele_arb_Arab" +"test_split": "arb_Arab" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ars_Arab.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ars_Arab.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e9941fd48a2b376d93553a28a42311a1470cc40c --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ars_Arab.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "ars_Arab" +"include": "_default_template_yaml" +"task": "belebele_ars_Arab" +"test_split": "ars_Arab" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_asm_Beng.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_asm_Beng.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c24a1deceac5c596705e95c03e43b327363be9ae --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_asm_Beng.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "asm_Beng" +"include": "_default_template_yaml" +"task": "belebele_asm_Beng" +"test_split": "asm_Beng" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ben_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ben_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c8736c5242e5b8ff3f717c317292a42fd718db5b --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ben_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "ben_Latn" +"include": "_default_template_yaml" +"task": "belebele_ben_Latn" +"test_split": "ben_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_bod_Tibt.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_bod_Tibt.yaml new file mode 100644 index 0000000000000000000000000000000000000000..53d40c4d574edd84946d7ee9e626e368af705ff8 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_bod_Tibt.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "bod_Tibt" +"include": "_default_template_yaml" +"task": "belebele_bod_Tibt" +"test_split": "bod_Tibt" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_cat_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_cat_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8781f8e28a58fa5b746d18f01da26b42d97a6bc7 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_cat_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "cat_Latn" +"include": "_default_template_yaml" +"task": "belebele_cat_Latn" +"test_split": "cat_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ceb_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ceb_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c9d2f89c90dd21c4293c13ab45a35d40858d2707 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ceb_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "ceb_Latn" +"include": "_default_template_yaml" +"task": "belebele_ceb_Latn" +"test_split": "ceb_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ckb_Arab.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ckb_Arab.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6ad49a8eae0550ddd23ca51839c2d72b31031725 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ckb_Arab.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "ckb_Arab" +"include": "_default_template_yaml" +"task": "belebele_ckb_Arab" +"test_split": "ckb_Arab" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_dan_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_dan_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..883b3cfceafb5af7141d2c793cdd9e9318690229 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_dan_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "dan_Latn" +"include": "_default_template_yaml" +"task": "belebele_dan_Latn" +"test_split": "dan_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_deu_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_deu_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d354efae5d140b85ca930fdf702483fcdac3be29 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_deu_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "deu_Latn" +"include": "_default_template_yaml" +"task": "belebele_deu_Latn" +"test_split": "deu_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ell_Grek.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ell_Grek.yaml new file mode 100644 index 0000000000000000000000000000000000000000..57226e976bc5f22fce37e2778e1f9596660ceceb --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ell_Grek.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "ell_Grek" +"include": "_default_template_yaml" +"task": "belebele_ell_Grek" +"test_split": "ell_Grek" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_eng_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_eng_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ee06a5422425655a257aa60409116d5c0fa5df2a --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_eng_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "eng_Latn" +"include": "_default_template_yaml" +"task": "belebele_eng_Latn" +"test_split": "eng_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_eus_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_eus_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b2ad09b8169ccf946d1cd5ec0cc4f02d9f2b3b21 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_eus_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "eus_Latn" +"include": "_default_template_yaml" +"task": "belebele_eus_Latn" +"test_split": "eus_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_fin_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_fin_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0b49e5a07dac1d21cdc5481f5ba161aa3a636367 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_fin_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "fin_Latn" +"include": "_default_template_yaml" +"task": "belebele_fin_Latn" +"test_split": "fin_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_grn_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_grn_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..cdba6f64218c05a514409b7cdb5122158a02aae8 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_grn_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "grn_Latn" +"include": "_default_template_yaml" +"task": "belebele_grn_Latn" +"test_split": "grn_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_hat_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_hat_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..1057a113404ce9b6826ce1224fe45657c5106a93 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_hat_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "hat_Latn" +"include": "_default_template_yaml" +"task": "belebele_hat_Latn" +"test_split": "hat_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_hau_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_hau_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e3626f36ad94245c596c3135b4e1950a47f71fb9 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_hau_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "hau_Latn" +"include": "_default_template_yaml" +"task": "belebele_hau_Latn" +"test_split": "hau_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_hin_Deva.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_hin_Deva.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9fa304c9b09100d17edd37a5f7caa1b11f5d22df --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_hin_Deva.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "hin_Deva" +"include": "_default_template_yaml" +"task": "belebele_hin_Deva" +"test_split": "hin_Deva" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_hin_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_hin_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f44f4f55f458197f0453be18fb5e389939da27b1 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_hin_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "hin_Latn" +"include": "_default_template_yaml" +"task": "belebele_hin_Latn" +"test_split": "hin_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ibo_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ibo_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b0a9302e21aa970581d5b61a11539c2a55dc2fb8 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ibo_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "ibo_Latn" +"include": "_default_template_yaml" +"task": "belebele_ibo_Latn" +"test_split": "ibo_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ind_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ind_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c15fff3ec36a0b3b140581f317553b2fa0e2e62c --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ind_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "ind_Latn" +"include": "_default_template_yaml" +"task": "belebele_ind_Latn" +"test_split": "ind_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ita_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ita_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..69c2faffd004bf654f954d428559cf62df755496 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ita_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "ita_Latn" +"include": "_default_template_yaml" +"task": "belebele_ita_Latn" +"test_split": "ita_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_jav_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_jav_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0b2e0499bbb29bfa0bcf38a4c8e7402a80d3d4c3 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_jav_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "jav_Latn" +"include": "_default_template_yaml" +"task": "belebele_jav_Latn" +"test_split": "jav_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_jpn_Jpan.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_jpn_Jpan.yaml new file mode 100644 index 0000000000000000000000000000000000000000..73b60502bc90b9e2128f9e2eb72046cf961b1054 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_jpn_Jpan.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "jpn_Jpan" +"include": "_default_template_yaml" +"task": "belebele_jpn_Jpan" +"test_split": "jpn_Jpan" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kac_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kac_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..002bc9a15882eb9f51f745baa79cd22313ea92aa --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kac_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "kac_Latn" +"include": "_default_template_yaml" +"task": "belebele_kac_Latn" +"test_split": "kac_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kan_Knda.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kan_Knda.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b4592afca58272c1b58d163c7f6626f3a2135d27 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kan_Knda.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "kan_Knda" +"include": "_default_template_yaml" +"task": "belebele_kan_Knda" +"test_split": "kan_Knda" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kaz_Cyrl.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kaz_Cyrl.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8af667d1ad67568d17f6c833979d8b04f9b8cffe --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kaz_Cyrl.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "kaz_Cyrl" +"include": "_default_template_yaml" +"task": "belebele_kaz_Cyrl" +"test_split": "kaz_Cyrl" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_khk_Cyrl.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_khk_Cyrl.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c77a77a79140f81476fa569a496b4e887138256b --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_khk_Cyrl.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "khk_Cyrl" +"include": "_default_template_yaml" +"task": "belebele_khk_Cyrl" +"test_split": "khk_Cyrl" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_khm_Khmr.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_khm_Khmr.yaml new file mode 100644 index 0000000000000000000000000000000000000000..39641c836b4ccf13ff16a730ef0ddd0ed6cc0962 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_khm_Khmr.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "khm_Khmr" +"include": "_default_template_yaml" +"task": "belebele_khm_Khmr" +"test_split": "khm_Khmr" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kin_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kin_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..188a1691c7e8230ae178ed058513f973a1c18073 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kin_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "kin_Latn" +"include": "_default_template_yaml" +"task": "belebele_kin_Latn" +"test_split": "kin_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kir_Cyrl.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kir_Cyrl.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3aa2ead603cacbd5b75537ef5356425b8fe227ce --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kir_Cyrl.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "kir_Cyrl" +"include": "_default_template_yaml" +"task": "belebele_kir_Cyrl" +"test_split": "kir_Cyrl" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kor_Hang.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kor_Hang.yaml new file mode 100644 index 0000000000000000000000000000000000000000..088d2e9359feaaf6504504e18390c0979988c6f9 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_kor_Hang.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "kor_Hang" +"include": "_default_template_yaml" +"task": "belebele_kor_Hang" +"test_split": "kor_Hang" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_lug_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_lug_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3de4c1cd96efadff9245b077b1d5cfca78a8e292 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_lug_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "lug_Latn" +"include": "_default_template_yaml" +"task": "belebele_lug_Latn" +"test_split": "lug_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_luo_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_luo_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..44ce22be6d00849d26e413643843b6e26c10bda4 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_luo_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "luo_Latn" +"include": "_default_template_yaml" +"task": "belebele_luo_Latn" +"test_split": "luo_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_lvs_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_lvs_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3f745135d880e4da97403d53c9b2586d64a2cac2 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_lvs_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "lvs_Latn" +"include": "_default_template_yaml" +"task": "belebele_lvs_Latn" +"test_split": "lvs_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_mal_Mlym.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_mal_Mlym.yaml new file mode 100644 index 0000000000000000000000000000000000000000..4387bd6df7a36d0a28ae2a7c27b7bc95d267a70e --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_mal_Mlym.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "mal_Mlym" +"include": "_default_template_yaml" +"task": "belebele_mal_Mlym" +"test_split": "mal_Mlym" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_mkd_Cyrl.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_mkd_Cyrl.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c9887108a949eae7be2e17e28a7ed9f81559f303 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_mkd_Cyrl.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "mkd_Cyrl" +"include": "_default_template_yaml" +"task": "belebele_mkd_Cyrl" +"test_split": "mkd_Cyrl" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_mlt_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_mlt_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..5303cdd976b5b1f2ebbe1f36e8661ab966a856b6 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_mlt_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "mlt_Latn" +"include": "_default_template_yaml" +"task": "belebele_mlt_Latn" +"test_split": "mlt_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_mri_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_mri_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d704cdc478175da6c8894a08da2d2e177f895ed2 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_mri_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "mri_Latn" +"include": "_default_template_yaml" +"task": "belebele_mri_Latn" +"test_split": "mri_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_npi_Deva.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_npi_Deva.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c8126174671cdcc412958b90d1bc3051a8d4386a --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_npi_Deva.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "npi_Deva" +"include": "_default_template_yaml" +"task": "belebele_npi_Deva" +"test_split": "npi_Deva" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_npi_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_npi_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e2ff68ad9a17c247ec2c8a9df996df7dbb9e115a --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_npi_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "npi_Latn" +"include": "_default_template_yaml" +"task": "belebele_npi_Latn" +"test_split": "npi_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_nso_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_nso_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6deb77602f876e7b95f23be45d6894ae73f42b39 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_nso_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "nso_Latn" +"include": "_default_template_yaml" +"task": "belebele_nso_Latn" +"test_split": "nso_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_pbt_Arab.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_pbt_Arab.yaml new file mode 100644 index 0000000000000000000000000000000000000000..7630b0fc3dc83d4a3587913a689fa05f2eaf432b --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_pbt_Arab.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "pbt_Arab" +"include": "_default_template_yaml" +"task": "belebele_pbt_Arab" +"test_split": "pbt_Arab" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_pes_Arab.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_pes_Arab.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ceda24e2a9be857e76584dff421da71427f6c50e --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_pes_Arab.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "pes_Arab" +"include": "_default_template_yaml" +"task": "belebele_pes_Arab" +"test_split": "pes_Arab" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_plt_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_plt_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..17889ae3556278624d79fe9bc632310a3008c66c --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_plt_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "plt_Latn" +"include": "_default_template_yaml" +"task": "belebele_plt_Latn" +"test_split": "plt_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_por_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_por_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f63ace02d5a3fb8cc1b0b85a279c49370567b16c --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_por_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "por_Latn" +"include": "_default_template_yaml" +"task": "belebele_por_Latn" +"test_split": "por_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ron_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ron_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ab1ad0889b4797ce6068fd1c8741fc45e29cb588 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_ron_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "ron_Latn" +"include": "_default_template_yaml" +"task": "belebele_ron_Latn" +"test_split": "ron_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_rus_Cyrl.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_rus_Cyrl.yaml new file mode 100644 index 0000000000000000000000000000000000000000..280768c7c61d44a0a9e7bb8aeae64ebbecfdd84a --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_rus_Cyrl.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "rus_Cyrl" +"include": "_default_template_yaml" +"task": "belebele_rus_Cyrl" +"test_split": "rus_Cyrl" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_shn_Mymr.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_shn_Mymr.yaml new file mode 100644 index 0000000000000000000000000000000000000000..75bbd05b16c54b593729f9a8f7b4499c25d2f5ed --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_shn_Mymr.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "shn_Mymr" +"include": "_default_template_yaml" +"task": "belebele_shn_Mymr" +"test_split": "shn_Mymr" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_sin_Sinh.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_sin_Sinh.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c1e42d9ac72601ffe27ddcc5994166a87a76bb31 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_sin_Sinh.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "sin_Sinh" +"include": "_default_template_yaml" +"task": "belebele_sin_Sinh" +"test_split": "sin_Sinh" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_slv_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_slv_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9e3e5338231b478c0c9614dabb6e26c7dd11d994 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_slv_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "slv_Latn" +"include": "_default_template_yaml" +"task": "belebele_slv_Latn" +"test_split": "slv_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_sna_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_sna_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a426a637e51fa1ec240b0c141beca1010de1ebd2 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_sna_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "sna_Latn" +"include": "_default_template_yaml" +"task": "belebele_sna_Latn" +"test_split": "sna_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_snd_Arab.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_snd_Arab.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ca8d1643f8bd1c98e7742c1ede66242aecae4f7f --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_snd_Arab.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "snd_Arab" +"include": "_default_template_yaml" +"task": "belebele_snd_Arab" +"test_split": "snd_Arab" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_sot_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_sot_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f98de9a3dab12ca1af6f570904abc976d11525df --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_sot_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "sot_Latn" +"include": "_default_template_yaml" +"task": "belebele_sot_Latn" +"test_split": "sot_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_spa_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_spa_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d26c6315b7fcde764b1cc6dfa0393a9ad0778bc2 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_spa_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "spa_Latn" +"include": "_default_template_yaml" +"task": "belebele_spa_Latn" +"test_split": "spa_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_srp_Cyrl.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_srp_Cyrl.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ad34472a6635b2da9e5e3003036a48678a5b2994 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_srp_Cyrl.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "srp_Cyrl" +"include": "_default_template_yaml" +"task": "belebele_srp_Cyrl" +"test_split": "srp_Cyrl" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_swe_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_swe_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6ac7a4afffb3db57119df0db971415e48aa94301 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_swe_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "swe_Latn" +"include": "_default_template_yaml" +"task": "belebele_swe_Latn" +"test_split": "swe_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_swh_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_swh_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..55845837a155e9fd1525830a263019910c793864 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_swh_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "swh_Latn" +"include": "_default_template_yaml" +"task": "belebele_swh_Latn" +"test_split": "swh_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tam_Taml.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tam_Taml.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9c81da2f8a7ab0c60628cd834eecb1f70031173b --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tam_Taml.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "tam_Taml" +"include": "_default_template_yaml" +"task": "belebele_tam_Taml" +"test_split": "tam_Taml" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tgk_Cyrl.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tgk_Cyrl.yaml new file mode 100644 index 0000000000000000000000000000000000000000..1597e5489c3f8960f12d97291661c23ace9a76ad --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tgk_Cyrl.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "tgk_Cyrl" +"include": "_default_template_yaml" +"task": "belebele_tgk_Cyrl" +"test_split": "tgk_Cyrl" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tgl_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tgl_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3b71adbc7fe41428fd350b60968fe744a94303db --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tgl_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "tgl_Latn" +"include": "_default_template_yaml" +"task": "belebele_tgl_Latn" +"test_split": "tgl_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tsn_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tsn_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e9c7aa83cf7f4195ad3f113f1420046d8986ed8a --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tsn_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "tsn_Latn" +"include": "_default_template_yaml" +"task": "belebele_tsn_Latn" +"test_split": "tsn_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tso_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tso_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..1dae599eb73aade0b753216421eac391afe89985 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_tso_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "tso_Latn" +"include": "_default_template_yaml" +"task": "belebele_tso_Latn" +"test_split": "tso_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_urd_Arab.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_urd_Arab.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a8c54e9ea623535b89b9147c9d9660a5723c5bdd --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_urd_Arab.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "urd_Arab" +"include": "_default_template_yaml" +"task": "belebele_urd_Arab" +"test_split": "urd_Arab" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_vie_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_vie_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..685e69785371db7a6021acc4298e0ddbc809dced --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_vie_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "vie_Latn" +"include": "_default_template_yaml" +"task": "belebele_vie_Latn" +"test_split": "vie_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_war_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_war_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d34508c3137b556b84038a06fcc6a9a2ea91f68c --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_war_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "war_Latn" +"include": "_default_template_yaml" +"task": "belebele_war_Latn" +"test_split": "war_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_xho_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_xho_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..2962f3553a24a64fdcc4ca4e7cdd771c657a5306 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_xho_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "xho_Latn" +"include": "_default_template_yaml" +"task": "belebele_xho_Latn" +"test_split": "xho_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_yor_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_yor_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9eb295cc0471885c83a4114b0551d134611d8c56 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_yor_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "yor_Latn" +"include": "_default_template_yaml" +"task": "belebele_yor_Latn" +"test_split": "yor_Latn" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_zho_Hans.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_zho_Hans.yaml new file mode 100644 index 0000000000000000000000000000000000000000..32b0860bdaa2806161c32d9d8359d02ec61140d2 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_zho_Hans.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "zho_Hans" +"include": "_default_template_yaml" +"task": "belebele_zho_Hans" +"test_split": "zho_Hans" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_zho_Hant.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_zho_Hant.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c8604e58b6b747cd32a0621fe2a1858a3102da36 --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_zho_Hant.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "zho_Hant" +"include": "_default_template_yaml" +"task": "belebele_zho_Hant" +"test_split": "zho_Hant" diff --git a/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_zsm_Latn.yaml b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_zsm_Latn.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d31cadf5e9aafb4b1337741dd7247607a36c456e --- /dev/null +++ b/lm-evaluation/build/lib/lm_eval/tasks/belebele/belebele_zsm_Latn.yaml @@ -0,0 +1,4 @@ +"fewshot_split": "zsm_Latn" +"include": "_default_template_yaml" +"task": "belebele_zsm_Latn" +"test_split": "zsm_Latn"