Views
No views yet
FacebookAI/xlm-roberta-base as its base encoder and is trained on UD_Polish-PDB (UD v2.17).| Metric | Tokens | Sentences | Words | UPOS | XPOS | UFeats | AllTags | Lemmas |
|---|---|---|---|---|---|---|---|---|
| Full-text (F1) | 99.94 | 99.66 | 99.93 | 99.21 | 96.41 | 96.36 | 95.51 | 98.20 |
| Aligned accuracy | 0.00 | 0.00 | 0.00 | 99.27 | 96.47 | 96.43 | 95.57 | 98.26 |
| Metric | UAS | LAS | CLAS | MLAS | BLEX |
|---|---|---|---|---|---|
| Full-text (F1) | 96.15 | 94.60 | 93.28 | 88.18 | 91.09 |
| Aligned accuracy | 96.21 | 94.66 | 93.33 | 88.24 | 91.14 |
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("Polish")
5
6# Parse raw text (handles sentence splitting + tokenization)
7result = nlp("Szybki brązowy lis przeskakuje nad leniwym psem.")
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}1@inproceedings{pl,
2 author = {Wr{\'o}blewska, Alina},
3 title = {Extended and Enhanced Polish Dependency Bank in Universal Dependencies Format},
4 booktitle = {Proceedings of the Second Workshop on Universal Dependencies (UDW 2018)},
5 editor = {de Marneffe, Marie-Catherine and Lynn, Teresa and Schuster, Sebastian},
6 pages = {173--182},
7 publisher = {Association for Computational Linguistics},
8 year = {2018}
9}