CohereForAI/Global-MMLU-Lite

Dataset

43

stars

118

commits

1

linked in READMEs

Jun 8, 2026

updated

argilla

README

GlobalMMLU Lite 3.0

Releases:

  • Version 3.0 (May 2026): GMMLU Lite 3.0 release with 5 new languages: Czech, Hungarian, Italian (updated), Oriya, Slovak and Tajik
  • Version 2.0 (Dec 2025): GMMLU Lite 2.0 release with 3 new languages: Albanian, Burmese and Welsh
  • Version 1.0 (Dec 2024): GMMLU Lite initial release with 15 languages.

GlobalMMLU Header

Dataset Summary

Global-MMLU-Lite is a multilingual evaluation set spanning 23 languages, including English. It is "lite" version of the original Global-MMLU dataset 🌍. It includes 200 Culturally Sensitive (CS) and 200 Culturally Agnostic (CA) samples per language. All samples in Global MMLU lite are fully human translated or post edited.

NOTE: Of the 23 languages presently included in Global-MMLU-Lite, 15 are taken from Global-MMLU dataset whereas Albanian, Burmese, Welsh have been contributed by external collaborators or members of Cohere Labs Open Science Community. The evaluation results reported in our paper are corresponding to the 15 languages originally released as part of Global-MMLU-Lite.

Global-MMLU Dataset Family:

NameExplanation
Global-MMLUFull Global-MMLU set with translations for all 14K samples including CS and CA subsets
Global-MMLU-LiteLite version of Global-MMLU with human translated samples in 23 languages and containing 200 samples each for CS and CA subsets per language.

Load with Datasets

To load this dataset with datasets, you'll first need to install it using pip install datasets and then use the following code:

from datasets import load_dataset

# load HF dataset
gmmlu_lite = load_dataset("CohereLabs/Global-MMLU-Lite", 'en')

# can also be used as pandas dataframe
gmmlu_lite.set_format("pandas")
gmmlu_lite_test = gmmlu_lite['test'][:]
gmmlu_lite_dev = gmmlu_lite['dev'][:]
additional details

The columns corresponding to annotations collected from our cultural bias study (i.e. 'required_knowledge', 'time_sensitive', 'reference', 'culture', 'region', 'country') contain a list of values representing annotations from different annotators. However, to avoid conversion issues to HF dataset, these columns are provided as string in the final dataset. You can convert these columns back to list of values for easier manipulation as follows:

import ast

# convert string values to list
gmmlu_lite_test['required_knowledge'] = gmmlu_lite_test['required_knowledge'].apply(lamda x: ast.literal_eval(x))

Data Fields

The data fields are the same among all splits. Brief description of each field is provided below.

data field description
  • sample_id: A unique identifier for the question.
  • subject: The main topic the question falls under.
  • subject_category: The high-level category the subject falls under i.e. STEM/Humanities/Social Sciences/Medical/Business/Other.
  • question: translated question from MMLU
  • option_a: one of the possible option choices
  • option_b: one of the possible option choices
  • option_c: one of the possible option choices
  • option_d: one of the possible option choices
  • `answer': the correct answer (A/B/C/D)
  • required_knowledge: annotator votes for knowledge needed to answer the question correctly. Possible values include: "cultural", "regional", "dialect" or "none"
  • time_sensitive: annotator votes indicating if the question's answer is time-dependent. Possible values include: Yes/No
  • reference: annotations for which part of the question contains cultural/regional/dialect references. The different items in the list are annotations from different annotators.
  • culture: annotations for which culture does the question belong to. The different items in the list correspond to annotations from different annotators.
  • region: Geographic region the question is relevant to. Each item in the list correspond to annotations from different annotators.
  • country: Specific country the question pertains to. Each item in the list correspond to annotations from different annotators.
  • cultural_sensitivity_label: Label to indicate if question is culturally sensitive (CS) or culturally agnostic (CA) based on annotator votes.
  • is_annotated: True/False flag to indicate if sample contains any annotations from our cultural bias study.

Data Splits

The following are the splits of the data:

SplitNo. of instancesLanguage Coverage
test9,20023
dev4,65522

Data Instances

An example from test set looks as follows:

{'sample_id': 'astronomy/test/58',
 'subject': 'astronomy',
 'subject_category': 'STEM',
 'question': 'When traveling north from the United States into Canada you’ll see the North Star (Polaris) getting _________.',
 'option_a': 'Brighter',
 'option_b': 'Dimmer',
 'option_c': 'Higher in the sky',
 'option_d': 'Lower in the sky',
 'answer': 'C',
 'required_knowledge': "['regional', 'regional', 'regional', 'regional']",
 'time_sensitive': "['No', 'No', 'No', 'No']",
 'reference': "[{'end': 55, 'label': 'Geographic', 'score': None, 'start': 5}, {'end': 43, 'label': 'Geographic', 'score': None, 'start': 30}, {'end': 55, 'label': 'Geographic', 'score': None, 'start': 5}, {'end': 43, 'label': 'Geographic', 'score': None, 'start': 30}]",
 'culture': '[]',
 'region': "['North America', 'North America', 'North America', 'North America']",
 'country': "['United States of America (USA)', 'United States of America (USA)', 'United States of America (USA)', 'United States of America (USA)']",
 'cultural_sensitivity_label': 'CS',
 'is_annotated': True
}

Statistics

Annotation Types

The following is the breakdown of CS🗽, CA⚖️ and MA📝 samples in the final dataset.

Type of AnnotationInstances per languageNo. of languagesTotal instances
Culturally Sensitive 🗽200234,600
Culturally Agnostic ⚖️200234,600
MMLU Annotated 📝400239,200

Languages

The dataset covers 23 languages. The following is details about the languages included in the dataset.

Languages Info
ISO CodeLanguageResources
arArabic (Standard)High
bnBengaliMid
csCzechMid
cyWelshLow
deGermanHigh
enEnglishHigh
frFrenchHigh
hiHindiHigh
huHungarianMid
idIndonesianMid
itItalianHigh
jaJapaneseHigh
koKoreanMid
myBurmeseLow
orOriyaLow
ptPortugueseHigh
esSpanishHigh
skSlovakMid
sqAlbanianLow
swSwahiliLow
tgTajikLow
yoYorùbáLow
zhChinese (Simplified)High

Known Limitations

A brief overview of limitations of this dataset is provided below.

show limitations
  • Language and dialect coverage: Global-MMLU focusses on 42 languages. However, this is still only a tiny fraction of the world’s linguistic diversity. Future work is needed to continue to improve evaluations beyond these 42 languages and take into account how technology serves different dialects.
  • Uneven distribution of contributions: The dataset contains translation post-edits from community volunteers, with a 'long tail' of volunteers making only one or two contributions. Similarly, there is a huge gap between languages with the highest number of contributions and ones with the lowest number of contributions.
  • Toxic or offensive speech: Our annotation process did not focus on flagging for toxic,harmful, or offensive speech, so it is possible that Global-MMLU contains some data that could be considered harmful. We believe this is of relatively low risk because of the nature of the original MMLU and the focus on examination material.
  • Region Category Assignment: For the annotation of geographically sensitive questions, we classified regions into six geographic regions (Africa, Asia, Europe, North America, Oceania,and South America). However, based upon discussions we would going forward recommend switching to the taxonomy proposed by the World Bank which is more granular and includes separate designations for Central America and Sub-Saharan Africa.
  • Identifying cultural sensitivity does not guarantee cultural inclusion: While Global-MMLU highlights important limitations in current datasets by identifying gaps in non-Western cultural representation. Future work must prioritize the integration of diverse culturally grounded knowledge to achieve true inclusivity and fairness in multilingual AI evaluation.

Additional Information

Provenance

Dataset Version and Maintenance

  • Maintenance Status: Actively Maintained
  • Version Details:
    • Current version: 3.0
    • Last Update: 05/2026
    • First Release: 12/2024

Authorship

  • Publishing Organization: Cohere Labs
  • Industry Type: Not-for-profit - Tech

Licensing Information

This dataset can be used for any purpose, under the terms of the Apache 2.0 License.

Continuous Improvement:

If you want to contribute to improving the quality of translations in Global-MMLU-Lite then please contribute using our annotation UI. You can also help review and edit machine translations in additional languages using our annotation interface to help improve language coverage of Global-MMLU-Lite.

Additional Details

For any additional details, please check our paper, Global MMLU: Understanding and Addressing Cultural and Linguistic Biases in Multilingual Evaluation.

Citation Information

@misc{singh2024globalmmluunderstandingaddressing,
      title={Global MMLU: Understanding and Addressing Cultural and Linguistic Biases in Multilingual Evaluation}, 
      author={Shivalika Singh and Angelika Romanou and Clémentine Fourrier and David I. Adelani and Jian Gang Ngui and Daniel Vila-Suero and Peerat Limkonchotiwat and Kelly Marchisio and Wei Qi Leong and Yosephine Susanto and Raymond Ng and Shayne Longpre and Wei-Yin Ko and Madeline Smith and Antoine Bosselut and Alice Oh and Andre F. T. Martins and Leshem Choshen and Daphne Ippolito and Enzo Ferrante and Marzieh Fadaee and Beyza Ermis and Sara Hooker},
      year={2024},
      eprint={2412.03304},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2412.03304}, 
}

Contributors

shivi

85 commits

shivalikasingh

19 commits

beyzaermis

11 commits

alexrs

3 commits

CohereForAI/Global-MMLU-Lite

Dataset

43

stars

118

commits

1

linked in READMEs

Jun 8, 2026

updated

argilla

README

GlobalMMLU Lite 3.0

Releases:

  • Version 3.0 (May 2026): GMMLU Lite 3.0 release with 5 new languages: Czech, Hungarian, Italian (updated), Oriya, Slovak and Tajik
  • Version 2.0 (Dec 2025): GMMLU Lite 2.0 release with 3 new languages: Albanian, Burmese and Welsh
  • Version 1.0 (Dec 2024): GMMLU Lite initial release with 15 languages.

GlobalMMLU Header

Dataset Summary

Global-MMLU-Lite is a multilingual evaluation set spanning 23 languages, including English. It is "lite" version of the original Global-MMLU dataset 🌍. It includes 200 Culturally Sensitive (CS) and 200 Culturally Agnostic (CA) samples per language. All samples in Global MMLU lite are fully human translated or post edited.

NOTE: Of the 23 languages presently included in Global-MMLU-Lite, 15 are taken from Global-MMLU dataset whereas Albanian, Burmese, Welsh have been contributed by external collaborators or members of Cohere Labs Open Science Community. The evaluation results reported in our paper are corresponding to the 15 languages originally released as part of Global-MMLU-Lite.

Global-MMLU Dataset Family:

NameExplanation
Global-MMLUFull Global-MMLU set with translations for all 14K samples including CS and CA subsets
Global-MMLU-LiteLite version of Global-MMLU with human translated samples in 23 languages and containing 200 samples each for CS and CA subsets per language.

Load with Datasets

To load this dataset with datasets, you'll first need to install it using pip install datasets and then use the following code:

from datasets import load_dataset

# load HF dataset
gmmlu_lite = load_dataset("CohereLabs/Global-MMLU-Lite", 'en')

# can also be used as pandas dataframe
gmmlu_lite.set_format("pandas")
gmmlu_lite_test = gmmlu_lite['test'][:]
gmmlu_lite_dev = gmmlu_lite['dev'][:]
additional details

The columns corresponding to annotations collected from our cultural bias study (i.e. 'required_knowledge', 'time_sensitive', 'reference', 'culture', 'region', 'country') contain a list of values representing annotations from different annotators. However, to avoid conversion issues to HF dataset, these columns are provided as string in the final dataset. You can convert these columns back to list of values for easier manipulation as follows:

import ast

# convert string values to list
gmmlu_lite_test['required_knowledge'] = gmmlu_lite_test['required_knowledge'].apply(lamda x: ast.literal_eval(x))

Data Fields

The data fields are the same among all splits. Brief description of each field is provided below.

data field description
  • sample_id: A unique identifier for the question.
  • subject: The main topic the question falls under.
  • subject_category: The high-level category the subject falls under i.e. STEM/Humanities/Social Sciences/Medical/Business/Other.
  • question: translated question from MMLU
  • option_a: one of the possible option choices
  • option_b: one of the possible option choices
  • option_c: one of the possible option choices
  • option_d: one of the possible option choices
  • `answer': the correct answer (A/B/C/D)
  • required_knowledge: annotator votes for knowledge needed to answer the question correctly. Possible values include: "cultural", "regional", "dialect" or "none"
  • time_sensitive: annotator votes indicating if the question's answer is time-dependent. Possible values include: Yes/No
  • reference: annotations for which part of the question contains cultural/regional/dialect references. The different items in the list are annotations from different annotators.
  • culture: annotations for which culture does the question belong to. The different items in the list correspond to annotations from different annotators.
  • region: Geographic region the question is relevant to. Each item in the list correspond to annotations from different annotators.
  • country: Specific country the question pertains to. Each item in the list correspond to annotations from different annotators.
  • cultural_sensitivity_label: Label to indicate if question is culturally sensitive (CS) or culturally agnostic (CA) based on annotator votes.
  • is_annotated: True/False flag to indicate if sample contains any annotations from our cultural bias study.

Data Splits

The following are the splits of the data:

SplitNo. of instancesLanguage Coverage
test9,20023
dev4,65522

Data Instances

An example from test set looks as follows:

{'sample_id': 'astronomy/test/58',
 'subject': 'astronomy',
 'subject_category': 'STEM',
 'question': 'When traveling north from the United States into Canada you’ll see the North Star (Polaris) getting _________.',
 'option_a': 'Brighter',
 'option_b': 'Dimmer',
 'option_c': 'Higher in the sky',
 'option_d': 'Lower in the sky',
 'answer': 'C',
 'required_knowledge': "['regional', 'regional', 'regional', 'regional']",
 'time_sensitive': "['No', 'No', 'No', 'No']",
 'reference': "[{'end': 55, 'label': 'Geographic', 'score': None, 'start': 5}, {'end': 43, 'label': 'Geographic', 'score': None, 'start': 30}, {'end': 55, 'label': 'Geographic', 'score': None, 'start': 5}, {'end': 43, 'label': 'Geographic', 'score': None, 'start': 30}]",
 'culture': '[]',
 'region': "['North America', 'North America', 'North America', 'North America']",
 'country': "['United States of America (USA)', 'United States of America (USA)', 'United States of America (USA)', 'United States of America (USA)']",
 'cultural_sensitivity_label': 'CS',
 'is_annotated': True
}

Statistics

Annotation Types

The following is the breakdown of CS🗽, CA⚖️ and MA📝 samples in the final dataset.

Type of AnnotationInstances per languageNo. of languagesTotal instances
Culturally Sensitive 🗽200234,600
Culturally Agnostic ⚖️200234,600
MMLU Annotated 📝400239,200

Languages

The dataset covers 23 languages. The following is details about the languages included in the dataset.

Languages Info
ISO CodeLanguageResources
arArabic (Standard)High
bnBengaliMid
csCzechMid
cyWelshLow
deGermanHigh
enEnglishHigh
frFrenchHigh
hiHindiHigh
huHungarianMid
idIndonesianMid
itItalianHigh
jaJapaneseHigh
koKoreanMid
myBurmeseLow
orOriyaLow
ptPortugueseHigh
esSpanishHigh
skSlovakMid
sqAlbanianLow
swSwahiliLow
tgTajikLow
yoYorùbáLow
zhChinese (Simplified)High

Known Limitations

A brief overview of limitations of this dataset is provided below.

show limitations
  • Language and dialect coverage: Global-MMLU focusses on 42 languages. However, this is still only a tiny fraction of the world’s linguistic diversity. Future work is needed to continue to improve evaluations beyond these 42 languages and take into account how technology serves different dialects.
  • Uneven distribution of contributions: The dataset contains translation post-edits from community volunteers, with a 'long tail' of volunteers making only one or two contributions. Similarly, there is a huge gap between languages with the highest number of contributions and ones with the lowest number of contributions.
  • Toxic or offensive speech: Our annotation process did not focus on flagging for toxic,harmful, or offensive speech, so it is possible that Global-MMLU contains some data that could be considered harmful. We believe this is of relatively low risk because of the nature of the original MMLU and the focus on examination material.
  • Region Category Assignment: For the annotation of geographically sensitive questions, we classified regions into six geographic regions (Africa, Asia, Europe, North America, Oceania,and South America). However, based upon discussions we would going forward recommend switching to the taxonomy proposed by the World Bank which is more granular and includes separate designations for Central America and Sub-Saharan Africa.
  • Identifying cultural sensitivity does not guarantee cultural inclusion: While Global-MMLU highlights important limitations in current datasets by identifying gaps in non-Western cultural representation. Future work must prioritize the integration of diverse culturally grounded knowledge to achieve true inclusivity and fairness in multilingual AI evaluation.

Additional Information

Provenance

Dataset Version and Maintenance

  • Maintenance Status: Actively Maintained
  • Version Details:
    • Current version: 3.0
    • Last Update: 05/2026
    • First Release: 12/2024

Authorship

  • Publishing Organization: Cohere Labs
  • Industry Type: Not-for-profit - Tech

Licensing Information

This dataset can be used for any purpose, under the terms of the Apache 2.0 License.

Continuous Improvement:

If you want to contribute to improving the quality of translations in Global-MMLU-Lite then please contribute using our annotation UI. You can also help review and edit machine translations in additional languages using our annotation interface to help improve language coverage of Global-MMLU-Lite.

Additional Details

For any additional details, please check our paper, Global MMLU: Understanding and Addressing Cultural and Linguistic Biases in Multilingual Evaluation.

Citation Information

@misc{singh2024globalmmluunderstandingaddressing,
      title={Global MMLU: Understanding and Addressing Cultural and Linguistic Biases in Multilingual Evaluation}, 
      author={Shivalika Singh and Angelika Romanou and Clémentine Fourrier and David I. Adelani and Jian Gang Ngui and Daniel Vila-Suero and Peerat Limkonchotiwat and Kelly Marchisio and Wei Qi Leong and Yosephine Susanto and Raymond Ng and Shayne Longpre and Wei-Yin Ko and Madeline Smith and Antoine Bosselut and Alice Oh and Andre F. T. Martins and Leshem Choshen and Daphne Ippolito and Enzo Ferrante and Marzieh Fadaee and Beyza Ermis and Sara Hooker},
      year={2024},
      eprint={2412.03304},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2412.03304}, 
}

Contributors

shivi

85 commits

shivalikasingh

19 commits

beyzaermis

11 commits

alexrs

3 commits