Views
No views yet
FacebookAI/xlm-roberta-base as its base encoder and is trained on UD_Tamil-TTB (UD v2.17).| Metric | Tokens | Sentences | Words | UPOS | XPOS | UFeats | AllTags | Lemmas |
|---|---|---|---|---|---|---|---|---|
| Full-text (F1) | 98.79 | 100.00 | 80.69 | 69.73 | 65.13 | 65.49 | 57.95 | 74.90 |
| Aligned accuracy | 0.00 | 0.00 | 0.00 | 86.42 | 80.72 | 81.17 | 71.81 | 92.83 |
| Metric | UAS | LAS | CLAS | MLAS | BLEX |
|---|---|---|---|---|---|
| Full-text (F1) | 44.35 | 38.98 | 38.79 | 28.61 | 35.95 |
| Aligned accuracy | 54.96 | 48.30 | 46.55 | 34.33 | 43.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("Tamil")
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{ta,
2 author = {Ramasamy, Loganathan and \v{Z}abokrtsk\'{y}, Zden\v{e}k},
3 year = {2012},
4 title = {Prague Dependency Style Treebank for {Tamil}},
5 booktitle = {Proceedings of Eighth International Conference on Language Resources and Evaluation ({LREC} 2012)},
6 address = {\.{I}stanbul, Turkey},
7 editor = {Nicoletta Calzolari (Conference Chair) and Khalid Choukri and Thierry Declerck and Mehmet Uğur Doğan and Bente Maegaard and Joseph Mariani and Asuncion Moreno and Jan Odijk and Stelios Piperidis},
8 isbn = {978-2-9517408-7-7},
9 pages = {1888--1894},
10 url = {http://www.lrec-conf.org/proceedings/lrec2012/summaries/456.html}
11}