MBZUAI/UrduMMLU
UrduMMLU: A Massive Multitask Benchmark for Urdu Language Understanding Ahmer Tabassum*1 · Sarfraz Ahmad*1 · Hasan Iqbal*1 · Owais Aijaz1 · Momina Ahsan1 · Preslav Nakov1 1 Mohamed bin Zayed University of Artificial Intelligence (MBZUAI) · *Equal contribution UrduMMLU is a large-scale, human-curated benchmark of 26,431 multiple-choice questions written natively in Urdu. Questions are… See the full description on the dataset page: https://huggingface.co/datasets/MBZUAI/UrduMMLU.
<p align="center"> <img src="logo.png" alt="UrduMMLU" width="200"> </p>
<h1 align="center">UrduMMLU: A Massive Multitask Benchmark for Urdu Language Understanding</h1>
<p align="center"> <b>Ahmer Tabassum</b><sup>1</sup> · <b>Sarfraz Ahmad</b><sup>1</sup> · <b>Hasan Iqbal</b><sup>*1</sup> · <b>Owais Aijaz</b><sup>1</sup> · <b>Momina Ahsan</b><sup>1</sup> · <b>Preslav Nakov</b><sup>1</sup> </p>
<p align="center"> <sup>1</sup> Mohamed bin Zayed University of Artificial Intelligence (MBZUAI) · <sup>*</sup>Equal contribution </p>
<p align="center"> <a href="https://arxiv.org/abs/2606.07167"><img src="https://img.shields.io/badge/Paper-arXiv-B31B1B?logo=arxiv&logoColor=white" alt="Paper"></a> <a href="https://mbzuai-nlp.github.io/UrduMMLU/"><img src="https://img.shields.io/badge/Project-Website-1F6FEB?logo=googlechrome&logoColor=white" alt="Project Website"></a> <a href="https://github.com/mbzuai-nlp/UrduMMLU"><img src="https://img.shields.io/badge/GitHub-Code-181717?logo=github&logoColor=white" alt="GitHub"></a> </p>
UrduMMLU is a large-scale, human-curated benchmark of 26,431 multiple-choice questions written natively in Urdu. Questions are drawn from Pakistani secondary and higher-secondary curricula (SSC-I through HSSC-II) and span the humanities, social sciences, STEM, professional studies, and general knowledge.
Unlike machine-translated MMLU variants, every item here is sourced from native Urdu exam material, then cleaned, de-duplicated, schema-normalized, and human-verified through a multi-stage annotation pipeline.
Dataset at a glance
Schema
Each record in urdummlu.json has exactly these fields:
{
"id": 0,
"question": "لیوس ایسڈ۔ بیس ری ایکشن کی پروڈکٹ اڈکٹ میں کون سا بانڈ ہوتا ہے؟",
"options": { "A": "کوویلنٹ بانڈ", "B": "کوآرڈینیٹ کوویلنٹ بانڈ", "C": "میٹلک بانڈ", "D": "آئیونک بانڈ" },
"correct_key": "B",
"domain": "STEM",
"subdomain": "chemistry",
"level": "SSC-II",
"length_tier": "long",
"source": [
{ "name": "BISE Multan 2025", "url": "https://www.bisemultan.edu.pk" }
]
}Records are grouped by domain (STEM → Social Sciences → Humanities → Profession → Other) and by subdomain frequency within each domain; id runs 0…N in that order.
Domain distribution
The 26 subdomains include Urdu literature, Urdu language, Islamic studies, Pakistan studies, chemistry, biology, mathematics, computer science, economics, sociology, and more. Per-subdomain, per-level, and source counts are in `stats.json`.
Curriculum levels
Usage
from datasets import load_dataset
ds = load_dataset("MBZUAI/UrduMMLU", split="test")
ex = ds[0]
print(ex["question"])
print(ex["options"], "→", ex["correct_key"])Evaluation
Treat each item as a single-answer MCQ: present question and options, then compare the model's chosen key against correct_key. Exact-match accuracy is the primary metric. We recommend reporting accuracy broken down by domain and level.
Sources
Questions were collected from publicly available Urdu exam and practice-question repositories, including Ustad 360, MCQ Times, TestPoint PK, eTest, FBISE, ExamAunty, GoTest, PakMCQs, and provincial examination boards (e.g. BISE Multan). Each item retains its source attribution in the source field.
Limitations
- Answer keys reflect the original source material and the annotation process; rare errors may remain.
length_tierisnullfor items where a length bucket was not assigned.- Coverage is weighted toward humanities and the SSC levels, mirroring the availability of native Urdu exam content.
Citation
@misc{tabassum2026urdummlumassivemultitaskbenchmark,
title={UrduMMLU: A Massive Multitask Benchmark for Urdu Language Understanding},
author={Ahmer Tabassum and Sarfraz Ahmad and Hasan Iqbal and Owais Aijaz and Momina Ahsan and Preslav Nakov},
year={2026},
eprint={2606.07167},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2606.07167},
}License
Released under CC BY 4.0.
