Datasets:
Tasks:
Token Classification
Modalities:
Text
Formats:
parquet
Languages:
Ukrainian
Size:
10M - 100M
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -14,4 +14,47 @@ configs:
|
|
| 14 |
data_files:
|
| 15 |
- split: train
|
| 16 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
data_files:
|
| 15 |
- split: train
|
| 16 |
path: data/train-*
|
| 17 |
+
license: apache-2.0
|
| 18 |
+
task_categories:
|
| 19 |
+
- token-classification
|
| 20 |
+
language:
|
| 21 |
+
- uk
|
| 22 |
+
size_categories:
|
| 23 |
+
- 10M<n<100M
|
| 24 |
+
tags:
|
| 25 |
+
- silver-standard
|
| 26 |
+
- ukrainian
|
| 27 |
+
- NER
|
| 28 |
---
|
| 29 |
+
|
| 30 |
+
# UberText-NER-Silver
|
| 31 |
+
|
| 32 |
+
**UberText-NER-Silver** is a silver-standard named entity recognition (NER) dataset for the Ukrainian language. It was automatically annotated using a high-performance model trained on NER-UK 2.0 and covers over 2.5 million social media and web sentences. The dataset significantly expands the coverage of underrepresented entity types and informal domains.
|
| 33 |
+
|
| 34 |
+
## Dataset Summary
|
| 35 |
+
|
| 36 |
+
- **Total Sentences:** 2,573,205
|
| 37 |
+
- **Total Words:** 45,489,533
|
| 38 |
+
- **Total Entity Spans:** 4,393,316
|
| 39 |
+
- **Entity Types (13):** `PERS`, `ORG`, `LOC`, `DATE`, `TIME`, `JOB`, `MON`, `PCT`, `PERIOD`, `DOC`, `QUANT`, `ART`, `MISC`
|
| 40 |
+
- **Format:** IOB-style, token-level annotations
|
| 41 |
+
|
| 42 |
+
## Source
|
| 43 |
+
|
| 44 |
+
Texts were taken from the UberText 2.0 corpus social media part, filtered and preprocessed for noise reduction and duplication. The dataset includes both entity-rich and entity-free content to improve model generalization.
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
## Example Usage
|
| 48 |
+
|
| 49 |
+
```python
|
| 50 |
+
from datasets import load_dataset
|
| 51 |
+
|
| 52 |
+
dataset = load_dataset("lang-uk/UberText-NER-Silver", split="train")
|
| 53 |
+
print(dataset[0])
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
## Applications
|
| 57 |
+
|
| 58 |
+
- Training large-scale NER models for Ukrainian
|
| 59 |
+
- Improving performance in low-resource and informal text domains
|
| 60 |
+
- Cross-lingual or transfer learning experiments
|