Evaluates multimodal understanding in Korean language and context across nine academic disciplines. Probes localized knowledge recall, discipline-specific conventions, and the ability to map visual and textual cues to correct answers in Korean institutional settings. Use when the user wants to benchmark on KMMMU, or asks about evaluating this task. Reports accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill kmmmu-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Kmmmu Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-kmmmu-eval)More formats (shields.io, HTML) on the badges page.
---
name: kmmmu-eval
description: Evaluates multimodal understanding in Korean language and context across nine academic disciplines. Probes localized knowledge recall, discipline-specific conventions, and the ability to map visual and textual cues to correct answers in Korean institutional settings. Use when the user wants to benchmark on KMMMU, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2604.13058
bibtex_key: lee2026kmmmu
confidence: high
---
# kmmmu-eval
> KMMMU: Evaluation of Massive Multi-discipline Multimodal Understanding in Korean Language and Context — Lee et al. (2026) (arXiv:2604.13058, 2026)
## What this evaluates
Evaluates multimodal understanding in Korean language and context across nine academic disciplines. Probes localized knowledge recall, discipline-specific conventions, and the ability to map visual and textual cues to correct answers in Korean institutional settings.
## Datasets
- **KMMMU** — total ?; splits: test (-1)
## Metrics
- `accuracy` **(primary)** — range: percent
- Percentage of correctly answered questions after converting model responses to normalized forms and comparing them to gold answers via an LLM-Judge framework. Reported as mean accuracy across three independent trials.
## Input / output format
**Input**: Multimodal exam questions in Korean combining visual and textual modalities, presented via a shared zero-shot prompt template.
**Output**: Normalized answer form (e.g., multiple-choice selection or short answer) compared against gold answers.
## Scoring recipe
```python
def compute_accuracy(predictions, gold_answers, llm_judge):
normalized = [normalize_response(p) for p in predictions]
correct = sum(1 for p, g in zip(normalized, gold_answers) if llm_judge(p, g))
return (correct / len(gold_answers)) * 100
# Run 3 independent trials per model, report mean and standard deviation of accuracy
```
## Common pitfalls
- Scoring relies on an LLM-Judge framework rather than exact string matching, which can introduce judge bias or inconsistency across different model outputs.
- Proprietary models are only evaluated on the 'hard subset' due to cost constraints, making direct comparison with open-source models on the full set potentially misleading.
- Overall accuracy is averaged across nine distinct disciplines, which may mask significant performance variations in specific domains like Math or Law.
## Evidence (verbatim from paper)
> For scoring, model responses are first converted into normalized answer forms, and then compared with the gold answers using an LLM-Judge framework. Each model is evaluated over three independent trials, and we report mean accuracy and standard deviation.
## Citation
```bibtex
@misc{lee2026kmmmu,
title={KMMMU: Evaluation of Massive Multi-discipline Multimodal Understanding in Korean Language and Context},
author={Lee et al. (2026)},
year={2026},
note={arXiv:2604.13058}
}
```
- arXiv: 2604.13058
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!