Datasets:

Modalities:
Text
Formats:
csv
Languages:
Uzbek
DOI:
License:
Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Uzbek Medical Entity Benchmark (UZ-EDBench)

πŸ“Œ Description

UZ-EDBench is a structured Uzbek-language dataset designed for medical entity recognition and classification in a low-resource setting. The dataset is distributed in TSV format and consists of annotated tokens and domain-specific entity labels.

It includes:

  • a main annotated corpus (UZ-EDBench.tsv)
  • a structured list of medical specialists (UZ-EDBench.Doctors.tsv)

This dataset addresses the lack of:

  • Uzbek medical NLP benchmarks
  • annotated corpora for clinical entity extraction
  • structured taxonomies of medical specialists

🧠 Task Definition

The dataset supports:

1. Named Entity Recognition (NER)

  • Input: tokenized Uzbek text
  • Output: entity labels (BIO format)

2. Entity Classification

  • Input: token / span
  • Output: entity type (medical category)

πŸ“Š Dataset Structure

πŸ”Ή Main File: UZ-EDBench.tsv

  • Format: TSV (tab-separated)
  • Each row = one token
  • Sentence boundaries may be separated by empty lines

Typical format:

token	label
Bemor	O
kardiolog	B-DOCTOR_TYPE
qabuliga	O
keldi	O

πŸ”Ή Auxiliary File: UZ-EDBench.Doctors.tsv

This file contains structured information about medical specialists (doctor types) used in annotation.

Typical structure:

doctor_type	description
kardiolog	Yurak kasalliklari boβ€˜yicha mutaxassis
nevrolog	Asab tizimi mutaxassisi

🏷 Tagset (Entity Labels)

The dataset uses a domain-specific BIO tagging scheme.

πŸ”Ή Core Medical Entities

Tag Description
B-DISEASE / I-DISEASE Kasallik nomlari
B-SYMPTOM / I-SYMPTOM Belgilar (simptomlar)
B-DRUG / I-DRUG Dori vositalari
B-TREATMENT / I-TREATMENT Davolash usullari
B-TEST / I-TEST Tibbiy tekshiruvlar
B-ANATOMY / I-ANATOMY Tana qismlari

πŸ”Ή Doctor Types (Shifokor turlari)

Tag Description
B-DOCTOR_TYPE / I-DOCTOR_TYPE Tibbiy mutaxassislik

Examples include:

  • kardiolog
  • terapevt
  • nevrolog
  • pediatr
  • jarroh
  • dermatolog

The full list is provided in: πŸ‘‰ UZ-EDBench.Doctors.tsv


πŸ”Ή BIO Tagging Scheme

Tag Meaning
B-XXX Beginning of entity
I-XXX Inside entity
O Outside entity

Example:

kardiolog  B-DOCTOR_TYPE
shifokor   I-DOCTOR_TYPE

🧾 Example

Token        Label
Bemor        O
nevrolog     B-DOCTOR_TYPE
qabuliga     O
bosh         B-ANATOMY
ogβ€˜rigβ€˜i     B-SYMPTOM
bilan        O
keldi        O

πŸ“ Evaluation Protocol

Recommended metrics:

  • Precision
  • Recall
  • F1-score (entity-level)
  • Token-level accuracy

Evaluation should follow the CoNLL NER standard.


πŸ“Š Data Splits

Predefined splits are not included.

Recommended split:

  • Train: 80%
  • Validation: 10%
  • Test: 10%

🎯 Use Cases

  • πŸ₯ Uzbek medical NER systems
  • πŸ€– Fine-tuning transformer models (BERT, RoBERTa, Qwen, etc.)
  • πŸ“Š Clinical text mining
  • 🧠 Healthcare AI assistants
  • πŸ” Information extraction from Uzbek medical text

UZ-EDBench

This repository contains two tab-separated subsets:

  • default: the main triage benchmark in UZ-EDBench.tsv
  • doctors: the doctor label reference table in UZ-EDBench.Doctors.tsv

βš™οΈ Loading the Dataset

from datasets import load_dataset

main = load_dataset("ruhilloalaev/uz_edbench", name="default")
doctors = load_dataset("ruhilloalaev/uz_edbench", name="doctors")

⚠️ Notes

  • Data is in Uzbek (Latin script)
  • Format: TSV (tab-separated)
  • Domain: medical / healthcare

Text may include:

  • morphological variation
  • domain-specific terminology
  • spelling inconsistencies

πŸ“œ License

This dataset is released under the CC-BY-4.0 License.

Downloads last month
11