HLE-BioMedX
收藏资源简介:
HLE-BioMedX是一个多语言版本的生物学与医学问答数据集,源自Humanitys Last Exam(HLE)基准测试中的生物学/医学子集。该数据集包含280个问题,每个问题提供9种语言版本:英语(原始)、中文、日语、韩语、法语、泰语、德语、西班牙语和约鲁巴语。其中,英语版本为原始问题与答案;中文、日语、韩语、法语和泰语版本由机器翻译后经人类专家审核与修订;德语、西班牙语和约鲁巴语版本仅通过机器翻译生成,未经过人工验证。所有语言子集通过相同的id对齐,便于逐项比较。数据字段包括:id(原始HLE问题ID)、question(问题文本,语言相应翻译)、answer(正确答案,语言相应翻译)。数据以Parquet格式存储,每个子集也提供CSV文件供便捷使用。需要注意的是,部分原始问题原本附带图片,但本数据集未包含图片,因此仅凭文本可回答。另外,日语中有一个问题(id: 6734b4befaf4e6eb454c1c92)缺失,存储为null,而其他语言版本均存在。该数据集适用于多语言问答、推理能力评估、机器翻译质量评测以及医学/生物学知识测试等场景。
HLE-BioMedX is a multilingual version of the biology and medicine question-answering dataset, derived from the biology/medicine subset of the Humanitys Last Exam (HLE) benchmark. The dataset contains 280 questions, each provided in 9 languages: English (original), Chinese, Japanese, Korean, French, Thai, German, Spanish, and Yoruba. The English version contains the original questions and answers; the Chinese, Japanese, Korean, French, and Thai versions were machine-translated and then reviewed and revised by human experts; the German, Spanish, and Yoruba versions were generated solely by machine translation without human verification. All language subsets are aligned by the same id for easy item-by-item comparison. Data fields include: id (original HLE question ID), question (question text in the corresponding language), and answer (correct answer in the corresponding language). The data is stored in Parquet format, and each subset is also available as a CSV file for convenience. Note that some original questions originally included images, but this dataset does not include images, so only text-based answers are possible. Additionally, one question (id: 6734b4befaf4e6eb454c1c92) is missing in Japanese and stored as null, while it exists in all other language versions. This dataset is suitable for multilingual question answering, reasoning ability evaluation, machine translation quality assessment, and medical/biological knowledge testing.
HLE-BioMedX 数据集概述
基本信息
- 许可证: MIT
- 任务类型: 问答(question-answering)
- 语言: 英语、中文、日语、韩语、法语、泰语、德语、西班牙语、约鲁巴语
- 数据规模: 1K < n < 10K(每个子集包含280个问题)
- 标签: 医学、生物学、多语言、推理
数据集结构
该数据集是 Humanitys Last Exam (HLE) 基准中“生物学/医学”子集的多语言版本,按语言分为9个子集:
| 分组 | 语言 | 翻译方式 |
|---|---|---|
| 源语言 | en |
原始英文问题与答案 |
| 机器翻译+专家验证/修订 | zh, ja, ko, fr, th |
机器翻译后由人类专家验证和修订 |
| 仅机器翻译 | de, es, yo |
机器翻译,无人工验证 |
所有子集包含相同的 280个问题,通过 id 对齐且顺序一致,便于逐项比较。
数据字段
| 字段 | 描述 |
|---|---|
id |
原始HLE问题ID,所有子集共享 |
question |
问题文本(英文为原始,其他语言为翻译) |
answer |
标准答案(英文为原始,其他语言为翻译) |
加载方式
可通过 Hugging Face datasets 库加载指定语言子集,例如:
python
from datasets import load_dataset
en = load_dataset("li-lab/HLE-BioMedX", "en")["test"]
zh = load_dataset("li-lab/HLE-BioMedX", "zh")["test"]
补充说明
- 问题来源于HLE生物学/医学类别的纯文本部分,少量原问题附带图片,但图片未在此发布,仅可基于文本作答。
- 一个日语问题(
6734b4befaf4e6eb454c1c92)缺失,存储为null;对应英文、中文、韩语、法语、泰语、德语、西班牙语和约鲁巴语条目存在。




