Views
No views yet
FacebookAI/xlm-roberta-base as its base encoder and is trained on UD_Hebrew-HTB (UD v2.17).| Metric | Tokens | Sentences | Words | UPOS | XPOS | UFeats | AllTags | Lemmas |
|---|---|---|---|---|---|---|---|---|
| Full-text (F1) | 100.00 | 100.00 | 93.25 | 91.18 | 91.23 | 89.10 | 88.65 | 90.89 |
| Aligned accuracy | 0.00 | 0.00 | 0.00 | 97.79 | 97.83 | 95.56 | 95.07 | 97.47 |
| Metric | UAS | LAS | CLAS | MLAS | BLEX |
|---|---|---|---|---|---|
| Full-text (F1) | 85.07 | 82.73 | 77.69 | 70.83 | 74.69 |
| Aligned accuracy | 91.23 | 88.73 | 84.31 | 76.87 | 81.05 |
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("Hebrew")
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}1@inproceedings{tsarfaty2013unified,
2 title={A Unified Morpho-Syntactic Scheme of Stanford Dependencies},
3 author={Tsarfaty, Reut},
4 booktitle={Proc. of ACL},
5 year={2013}
6 }
7
8 @inproceedings{mcdonald2013universal,
9 title={Universal Dependency Annotation for Multilingual Parsing},
10 author={McDonald, Ryan T and Nivre, Joakim and Quirmbach-Brundage, Yvonne and Goldberg, Yoav and Das, Dipanjan and Ganchev, Kuzman and Hall, Keith B and Petrov, Slav and Zhang, Hao and T{\"a}ckstr{\"o}m, Oscar and others},
11 booktitle={Proc. of ACL},
12 year={2013}
13 }