Views
No views yet
FacebookAI/xlm-roberta-base as its base encoder and is trained on UD_Hebrew-IAHLTwiki (UD v2.17).| Metric | Tokens | Sentences | Words | UPOS | XPOS | UFeats | AllTags | Lemmas |
|---|---|---|---|---|---|---|---|---|
| Full-text (F1) | 98.53 | 86.54 | 91.84 | 88.84 | 88.82 | 83.83 | 82.74 | 89.92 |
| Aligned accuracy | 0.00 | 0.00 | 0.00 | 96.74 | 96.71 | 91.28 | 90.09 | 97.91 |
| Metric | UAS | LAS | CLAS | MLAS | BLEX |
|---|---|---|---|---|---|
| Full-text (F1) | 80.44 | 78.75 | 74.13 | 61.85 | 71.82 |
| Aligned accuracy | 87.59 | 85.75 | 82.62 | 68.93 | 80.04 |
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{ZeldesHowellOrdanBenMoshe2022,
2 author = {Amir Zeldes and Nick Howell and Noam Ordan and Yifat Ben Moshe},
3 booktitle = {Proceedings of {EMNLP} 2022},
4 title = {A Second Wave of {UD} {H}ebrew Treebanking and Cross-Domain Parsing},
5 year = {2022},
6 pages = {4331--4344},
7 address = {Abu Dhabi, UAE},
8 url = {https://aclanthology.org/2022.emnlp-main.292/},
9}