Views
No views yet
FacebookAI/xlm-roberta-base as its base encoder and is trained on UD_Portuguese-PetroGold (UD v2.17).| Metric | Tokens | Sentences | Words | UPOS | XPOS | UFeats | AllTags | Lemmas |
|---|---|---|---|---|---|---|---|---|
| Full-text (F1) | 99.72 | 96.76 | 98.44 | 97.61 | 98.44 | 97.14 | 96.70 | 97.87 |
| Aligned accuracy | 0.00 | 0.00 | 0.00 | 99.16 | 100.00 | 98.68 | 98.24 | 99.43 |
| Metric | UAS | LAS | CLAS | MLAS | BLEX |
|---|---|---|---|---|---|
| Full-text (F1) | 92.75 | 91.64 | 88.98 | 85.25 | 88.35 |
| Aligned accuracy | 94.22 | 93.10 | 90.32 | 86.53 | 89.68 |
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("Portuguese")
5
6# Parse raw text (handles sentence splitting + tokenization)
7result = nlp("A rápida raposa marrom pula sobre o cão preguiçoso.")
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{souza2022polishing,
2 title={Polishing the gold--how much revision do we need in treebanks?},
3 author={de{ }Souza, Elvis and Freitas, Cl{\'a}udia},
4 booktitle={Procedings of the Universal Dependencies Brazilian Festival},
5 pages={1--11},
6 year={2022}
7}