Views
No views yet
Sharipov, M. S. (2026). Transformer-based intelligent model for identifying multi-word lexical units and reducing syntactic ambiguities in Uzbek language texts. Bulletin of TUIT: Management and Communication Technologies, 2(14), 103-107. DOI: 10.61663/262tuitmct14
Link: https://uzjurnal.uz/2/2026/2/index?issue=14
Saidov, A., & Sharipov, M. (2025). Development of a Lemmatization Algorithm: Interpreting Open Compound Words. In Proceedings of the 17th International Scientific and Technical Conference Actual Problems of Electronic Instrument Engineering (APEIE). IEEE. DOI: 10.1109/APEIE66761.2025.11289280
1@inproceedings{saidov2025development,
2 title={Development of a Lemmatization Algorithm: Interpreting Open Compound Words},
3 author={Saidov, Abdusobir and Sharipov, Maksud},
4 booktitle={Proceedings of the 17th International Scientific and Technical Conference Actual Problems of Electronic Instrument Engineering (APEIE 2025)},
5 year={2025},
6 organization={IEEE},
7 doi={10.1109/APEIE66761.2025.11289280},
8 url={[https://www.scopus.com/pages/publications/105031773662](https://www.scopus.com/pages/publications/105031773662)}
9}
10
11## How to use
12
13We recommend using the official PyPI package, which handles both Latin and Cyrillic script conversion seamlessly:
14
15```bash
16pip install uzbek-mwe-tokenizer1from uzbek_mwe_tokenizer import UzbekMWETokenizer
2
3# Latin mode example
4tokenizer = UzbekMWETokenizer(mode="lot")
5mwes = tokenizer.extract_mwe("Natijani ko'rib, hamma o'quvchilarning birdaniga tarvuzi qo'ltig'idan tushdi.")
6print(mwes)
7
8# Cyrillic mode example
9tokenizer_cyr = UzbekMWETokenizer(mode="cyr")
10mwes_cyr = tokenizer_cyr.extract_mwe("Рақибларимизни кўриб бизнинг асло тепа сочимиз тик бўлмади.")
11print(mwes_cyr)[{'mwe': "tarvuzi qo'ltig'idan tushdi", 'confidence': 100.0}]1from transformers import AutoTokenizer, AutoModelForTokenClassification
2
3model_name = "MaksudSharipov/Uzbek-MWE-Tokenizer-uzBERT"
4tokenizer = AutoTokenizer.from_pretrained(model_name, use_fast=False)
5model = AutoModelForTokenClassification.from_pretrained(model_name)