CoolFace
Datasetpublic

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.

sourceHugging Facecc-by-4.0updated 3mo agoView on Hugging Face
1likes35downloads
Dataset Card

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

FieldDescription
SentenceSentence identifier. Tokens with the same value belong to the same sentence.
TokenOrder1-based token position inside the sentence.
TokenToken text.
NER_TagBIO named entity tag. O marks tokens outside named entities.
posSource POS or token category label.

Tagset

The dataset uses BIO labels over the following named entity types.

EntityTagGold v1.0 guideline
PersonPERInson ismi yoki aniq shaxs nomi; lavozim, kasb, umumiy guruh va olmoshlar PER emas.
OrganizationORGTashkilot, vazirlik, universitet, agentlik, kompaniya, qo‘mita, fond/jamg‘arma va boshqalar.
LocationLOCDavlat, respublika, viloyat, shahar, tuman, geografik joy nomlari.
MiscellaneousMISCQolgan maxsus nomlangan obyektlar; aniq sinfga tushmaydigan nomlar.
MoneyMONEYPul birliklari va pul miqdorlari.
NumberNUMERICSon, raqam, miqdor ifodalari, money/time bo‘lmagan raqamli birliklar.
Date/TimeTEMPORALSana, vaqt, davr, yil, oy, kun va vaqt oralig‘i.
WorkWORKAsar, kitob, film, loyiha, badiiy yoki ilmiy ish nomlari; standart yozilishi WORK.

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

MetricValue
Token rows59,569
Columns5
Sentences4,176
Unique tokens, case-sensitive14,791
Unique tokens, case-folded13,969
Duplicate rows0
Empty values0
Minimum sentence length1
Maximum sentence length253
Mean sentence length14.26
Median sentence length12

Entity Span Distribution

Entity typeGold v1.0 spansOriginal spansDifference
LOC2,3022,26240
ORG2,1482,207-59
PER1,6532,845-1,192
MISC1,4001,498-98
TEMPORAL591615-24
NUMERIC581591-10
WORK441465-24
MONEY134140-6
Total9,25010,623-1,373

NER Tag Distribution

NER tagCount
O43,445
B-LOC2,302
I-ORG2,191
B-ORG2,148
B-PER1,653
B-MISC1,400
I-MISC1,258
I-PER1,161
I-LOC842
B-TEMPORAL591
B-NUMERIC581
I-WORK448
B-WORK441
I-NUMERIC437
I-TEMPORAL323
I-MONEY214
B-MONEY134

POS/Category Distribution

POS/categoryCount
N17,733
NER12,914
VB9,746
PUNCT4,628
JJ4,096
IB2,676
II2,137
C1,478
P1,328
RR1,207
NUM956
MD417
Prt225
UNK26
UH2

Normalization

  • Text is stored as UTF-8.
  • Uzbek text is normalized to Latin script.
  • Uzbek apostrophes were normalized to distinct Unicode characters: for o‘/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

python
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:

python
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:

bibtex
@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}
}