uznlp-uz/uzbek_NER
Uzbek NER Gold Uzbek NER Gold is a token-level named entity recognition dataset for Uzbek. The dataset is distributed as a UTF-8 TSV file and uses BIO tagging for named entities. Dataset Summary Dataset ID: uznlp-uz/uzbek_NER Language: Uzbek (uz) Rows: 59,569 token rows Columns: 5 Sentences: 4,176 Split: train Format: UTF-8 TSV Data file: Uzbek_NER_Gold.tsv License: CC BY 4.0 Data Fields Field Description Sentence Sentence identifier.… See the full description on the dataset page: https://huggingface.co/datasets/uznlp-uz/uzbek_NER.
Uzbek NER Gold
Uzbek NER Gold is a token-level named entity recognition dataset for Uzbek. The dataset is distributed as a UTF-8 TSV file and uses BIO tagging for named entities.
Dataset Summary
- Dataset ID:
uznlp-uz/uzbek_NER - Language: Uzbek (
uz) - Rows: 59,569 token rows
- Columns: 5
- Sentences: 4,176
- Split:
train - Format: UTF-8 TSV
- Data file:
Uzbek_NER_Gold.tsv - License: CC BY 4.0
Data Fields
Tagset
The dataset uses BIO labels over the following named entity types.
Label Values
NER labels: O, B-PER, I-PER, B-ORG, I-ORG, B-LOC, I-LOC, B-MISC, I-MISC, B-MONEY, I-MONEY, B-NUMERIC, I-NUMERIC, B-TEMPORAL, I-TEMPORAL, B-WORK, I-WORK
POS/category labels: C, IB, II, JJ, MD, N, NER, NUM, P, PUNCT, Prt, RR, UH, UNK, VB
Statistics
Overview
Entity Span Distribution
NER Tag Distribution
POS/Category Distribution
Normalization
- Text is stored as UTF-8.
- Uzbek text is normalized to Latin script.
- Uzbek apostrophes were normalized to distinct Unicode characters:
‘foro‘/g‘and’for the tutuq sign. - Non-standard apostrophe variants were removed from the released TSV.
- Each token is stored on a separate TSV row.
- No field contains empty values in the released file.
Loading
from datasets import load_dataset
dataset = load_dataset("uznlp-uz/uzbek_NER", split="train")
print(dataset[0])The TSV file can also be loaded directly:
from datasets import load_dataset
dataset = load_dataset(
"csv",
data_files="Uzbek_NER_Gold.tsv",
delimiter="\t",
split="train",
)Intended Use
This dataset can be used for Uzbek named entity recognition research and development, including token classification, NER model training, NER evaluation, information extraction, and benchmarking Uzbek language models.
Notes
The dataset is sentence-aware through the Sentence and TokenOrder fields. To reconstruct sentences, group rows by Sentence and sort them by TokenOrder.
The NER_Tag field follows BIO notation. A tag beginning with B- starts an entity span, and a tag beginning with I- continues an entity span of the same type.
Citation
If you use Uzbek NER Gold, cite the dataset repository:
@misc{uzbek_ner_gold,
title = {Uzbek NER Gold},
author = {{Elov B.B., Alaev R.H.}},
year = {2026},
howpublished = {\url{https://huggingface.co/datasets/uznlp-uz/uzbek_NER}},
license = {CC BY 4.0}
}