Views
No views yet
FacebookAI/xlm-roberta-base as its base encoder and is trained on UD_Old_East_Slavic-Ruthenian (UD v2.17).| Metric | Tokens | Sentences | Words | UPOS | XPOS | UFeats | AllTags | Lemmas |
|---|---|---|---|---|---|---|---|---|
| Full-text (F1) | 99.91 | 96.35 | 99.91 | 96.19 | 89.32 | 85.95 | 79.19 | 90.67 |
| Aligned accuracy | 0.00 | 0.00 | 0.00 | 96.28 | 89.40 | 86.03 | 79.26 | 90.75 |
| Metric | UAS | LAS | CLAS | MLAS | BLEX |
|---|---|---|---|---|---|
| Full-text (F1) | 80.81 | 76.74 | 69.37 | 53.67 | 60.49 |
| Aligned accuracy | 80.89 | 76.81 | 69.64 | 53.88 | 60.72 |
pip install combo-nlpcombo-nlp, so
no extra install step is needed.1from combo import COMBO
2
3# Load a pre-trained model with the corresponding combo-seg segmenter
4nlp = COMBO("Old_East_Slavic")
5
6# Parse raw text (handles sentence splitting + tokenization)
7result = nlp("Бързая лисица прѣскачетъ чрѣзъ лѣниваго пьса.")
8
9# Inspect results
10for sentence in result:
11 for token in sentence:
12 print(f"{token.form:<15} {token.lemma:<15} {token.upos:<8} head={token.head} {token.deprel}")LICENSE.txt file in the treebank repository:1@software{combo_nlp_2026,
2 author = {Ulewicz, Michał and Jabłońska, Maja and Klimaszewski, Mateusz and Przybyła, Piotr and Pszenny, Łukasz and Rybak, Piotr and Wiącek, Martyna and Wróblewska, Alina},
3 title = {{COMBO-NLP} Models Trained on {UD} v2.17},
4 year = {2026},
5 publisher = {Zenodo},
6 doi = {10.5281/zenodo.19650523},
7 url = {https://doi.org/10.5281/zenodo.19650523}
8}