erenyeager-1/tiny-aya-l2-thinker-multilingual-reasoning
Tiny Aya L2 Multilingual Reasoning (44 languages) Translated multilingual reasoning traces used to train Tiny Aya L2-Thinker. Each example has the prompt, thinking, and answer in the same non-English language alongside the original texts in English. Languages (44) Language Train Test Total Amharic (am) 3,807 448 4,255 Arabic (ar) 22,968 2,538 25,506 Bulgarian (bg) 4,177 452 4,629 Bengali (bn) 3,803 422 4,225 Catalan (ca) 4,251 512 4,763 Czech… See the full description on the dataset page: https://huggingface.co/datasets/erenyeager-1/tiny-aya-l2-thinker-multilingual-reasoning.
Tiny Aya L2 Multilingual Reasoning (44 languages)
Translated multilingual reasoning traces used to train **Tiny Aya L2-Thinker**. Each example has the prompt, thinking, and answer in the same non-English language alongside the original texts in English.
Languages (44)
Load
from datasets import concatenate_datasets, get_dataset_config_names, load_dataset
# one language
ds = load_dataset("CohereLabs/tiny-aya-l2-thinker-multilingual-reasoning", "ar")
# every language
configs = get_dataset_config_names("CohereLabs/tiny-aya-l2-thinker-multilingual-reasoning")
all_langs = concatenate_datasets(
[load_dataset("CohereLabs/tiny-aya-l2-thinker-multilingual-reasoning", name, split="train") for name in configs]
)Columns
id:{language_code}-{domain}-{index}(for examplear-math-000001)language,language_code: full name and ISO codedomain:math,science, orgeneralquestion,thinking,outputin the given languageoriginal_question,original_thinking,original_output: English source
