Evaluates a model's ability to identify and classify named entities (e.g., person, location, organization) within Korean text, testing token-level understanding. Use when the user wants to benchmark on KLUE-NER, or asks about evaluating this task. Reports F1.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill klue-ner-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Klue Ner Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-klue-ner-eval)More formats (shields.io, HTML) on the badges page.
---
name: klue-ner-eval
description: Evaluates a model's ability to identify and classify named entities (e.g., person, location, organization) within Korean text, testing token-level understanding. Use when the user wants to benchmark on KLUE-NER, or asks about evaluating this task. Reports F1.
metadata:
skill_kind: dataset_eval
source_arxiv: 2105.09680
bibtex_key: park2021klue
confidence: medium
---
# klue-ner-eval
> KLUE: Korean Language Understanding Evaluation — Sungjoon Park et al. (arXiv:2105.09680, 2021)
## What this evaluates
Evaluates a model's ability to identify and classify named entities (e.g., person, location, organization) within Korean text, testing token-level understanding.
## Datasets
- **KLUE-NER** — total ?; splits: train (-1), val (-1), test (-1); repo https://github.com/KLUE-benchmark/KLUE
## Metrics
- `F1` **(primary)** — range: [0, 1]
- Harmonic mean of precision and recall for entity boundary and label matching.
## Input / output format
**Input**: Korean sentence with tokenized input.
**Output**: Sequence of BIO/IOB entity tags per token.
## Scoring recipe
```python
def compute_f1(predictions, gold):
tp = sum(1 for p, g in zip(predictions, gold) if p == g and p != 'O')
fp = sum(1 for p, g in zip(predictions, gold) if p != g and p != 'O')
fn = sum(1 for p, g in zip(predictions, gold) if p != g and g != 'O')
prec = tp / (tp + fp) if (tp + fp) > 0 else 0
rec = tp / (tp + fn) if (tp + fn) > 0 else 0
return 2 * prec * rec / (prec + rec) if (prec + rec) > 0 else 0
```
## Common pitfalls
- Tokenization mismatches between model BPE and gold character-level annotations.
- Strict boundary matching penalizes minor offset errors heavily.
## Evidence (verbatim from paper)
> KLUE introduces a comprehensive, ethically designed benchmark for Korean NLU with 8 tasks (Topic Classification, STS, NLI, NER, RE, DP, MRC, DST) built from scratch using diverse, copyright-respected corpora.
## Citation
```bibtex
@misc{park2021klue,
title={KLUE: Korean Language Understanding Evaluation},
author={Sungjoon Park et al.},
year={2021},
note={arXiv:2105.09680}
}
```
- arXiv: 2105.09680
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!