Datasets:
ID int64 1 21.6k | So‘z stringlengths 1 34 | Bo‘g‘inlarga ajratilgan shakli stringlengths 1 34 |
|---|---|---|
1 | va’da | va’-da |
2 | ma’rifat | ma’-ri-fat |
3 | mash’al | mash’-al |
4 | jur’at | jur’-at |
5 | e’tibor | e’ti-bor |
6 | mas’ul | mas’-ul |
7 | ta’lim | ta’-lim |
8 | san’at | san’-at |
9 | an’ana | an’-ana |
10 | e’lon | e’lon |
11 | abadiy | aba-diy |
12 | eshikdan | eshik-dan |
13 | ekildi | ekil-di |
14 | asar | asar |
15 | aniq | aniq |
16 | odam | odam |
17 | ustoz | us-toz |
18 | ifoda | ifo-da |
19 | ilmiy | il-miy |
20 | aka | aka |
21 | mudofaa | mu-do-faa |
22 | matbaa | mat-baa |
23 | radio | ra-dio |
24 | duo | duo |
25 | video | vi-deo |
26 | diagramma | dia-gram-ma |
27 | monografiya | mo-no-gra-fi-ya |
28 | programma | pro-gram-ma |
29 | traktor | trak-tor |
30 | fabrika | fab-ri-ka |
31 | student | stu-dent |
32 | rasmiy | ras-miy |
33 | mumkin | mum-kin |
34 | tartib | tar-tib |
35 | sifatli | si-fat-li |
36 | yaxshi | yax-shi |
37 | qishki | qish-ki |
38 | tushdi | tush-di |
39 | kitoblar | ki-tob-lar |
40 | qizlar | qiz-lar |
41 | yoshlar | yosh-lar |
42 | silindrik | si-lin-drik |
43 | konkret | kon-kret |
44 | kontrakt | kon-trakt |
45 | elektron | elek-tron |
46 | darslik | dars-lik |
47 | bankrot | ban-krot |
48 | tashkil | tash-kil |
49 | peshayvon | pe-shay-von |
50 | peshona | pe-sho-na |
51 | maishat | mai-shat |
52 | pichoq | pi-choq |
53 | bichiqchi | bi-chiq-chi |
54 | singil | si-ngil |
55 | dengiz | de-ngiz |
56 | gacha | ga-cha |
57 | kecha | ke-cha |
58 | bog‘cha | bog‘-cha |
59 | qo‘shiq | qo‘-shiq |
60 | o‘yin | o‘yin |
61 | AQSH | AQSH |
62 | BMT | BMT |
63 | ToshDU | ToshDU |
64 | 2025 | 2025 |
65 | 110 gr | 110 gr |
66 | 25 sm | 25 sm |
67 | Navro‘z–2015 | Navro‘z–2015 |
68 | Boing–767 | Boing–767 |
69 | A.J.Jabborov | A.J.Jabborov |
70 | v.b. | v.b. |
71 | sh.k. | sh.k. |
72 | v.h.k. | v.h.k. |
73 | bola | bo-la |
74 | kitob | ki-tob |
75 | tovuq | to-vuq |
76 | sigir | si-gir |
77 | zamin | za-min |
78 | sadaqa | sa-da-qa |
79 | mevali | me-va-li |
80 | buyuk | bu-yuk |
81 | hayot | ha-yot |
82 | tomosha | to-mo-sha |
83 | tushlik | tu-shlik |
84 | bahor | ba-hor |
85 | qizil | qi-zil |
86 | dunyo | dun-yo |
87 | boylik | boy-lik |
88 | talaba | ta-la-ba |
89 | bilimdon | bi-lim-don |
90 | samarali | sa-ma-ra-li |
91 | qahramon | qah-ra-mon |
92 | maktab | mak-tab |
93 | iltimos | il-ti-mos |
94 | javob | ja-vob |
95 | qalam | qa-lam |
96 | devor | de-vor |
97 | guliston | gu-lis-ton |
98 | kitobxon | ki-tob-xon |
99 | kutubxona | ku-tub-xo-na |
100 | shoirlik | sho-ir-lik |
Uzbek Syllable Dataset for Linguistic and Natural Language Processing Research
Dataset Summary
uz_syllables, titled Uzbek Syllable Dataset for Linguistic and Natural Language Processing Research, is a word-level Uzbek syllabification dataset. Each row pairs an Uzbek word with its syllabified form, where syllable boundaries are marked with -.
The current TSV file contains:
- 21,607 rows
- 21,531 unique surface forms
- 1 split:
train - UTF-8 encoded tab-separated values (
.tsv)
This dataset is useful for:
- Uzbek syllabification and segmentation tasks
- Rule-based or ML-based syllable splitter evaluation
- Educational tools for reading and spelling
- Lexicon preparation for downstream Uzbek NLP, TTS, or ASR pipelines
Languages
- Uzbek (
uz)
Dataset Structure
Data Instances
Example:
{
"ID": "1",
"So‘z": "va’da",
"Bo‘g‘inlarga ajratilgan shakli": "va’-da"
}
Another example:
{
"ID": "5",
"So‘z": "e’tibor",
"Bo‘g‘inlarga ajratilgan shakli": "e’ti-bor"
}
Data Fields
ID: Row identifier.So‘z: Original Uzbek word form.Bo‘g‘inlarga ajratilgan shakli: Syllabified version of the word. Syllable boundaries are marked with-.
Data Splits
| Split | Rows |
|---|---|
| train | 21,607 |
Loading the Dataset
From Hugging Face:
from datasets import load_dataset
dataset = load_dataset("uznlp-uz/uz_syllables")
print(dataset["train"][0])
From a local TSV file:
from datasets import load_dataset
dataset = load_dataset(
"csv",
data_files={"train": "dataset_syllables.tsv"},
delimiter="\t",
)
print(dataset["train"][0])
Dataset Creation
The working source data in this project was maintained in spreadsheet form and exported to TSV for release. Local preprocessing scripts in the project indicate normalization focused on Uzbek apostrophe variants and related text cleanup before export.
This release is word-level only and does not include sentence context, phoneme labels, stress markers, or morphological tags.
Recommended Uses
- Training and evaluation of Uzbek syllabification systems
- Benchmarking rule-based segmentation algorithms
- Building educational resources for Uzbek language learning
- Preprocessing support for pronunciation-aware applications
Limitations
- The dataset is limited to isolated words, so it does not model sentence-level pronunciation or prosody.
- A small number of repeated surface forms are present in the TSV.
- Orthographic normalization choices, especially around apostrophes, may affect exact string matching in downstream systems.
License
This dataset is released under the CC-BY-4.0 license.
- Downloads last month
- 35