Views
No views yet
XLM-RoBERTa-large model for Hungarian and English,
trained on datasets provided by the National Tax and Customs Administration - Hungary (NAV) and translated versions of the same dataset using Google Translate API.xlm-roberta-large model, trained on a dataset of Hungarian legal and administrative texts. The model was also trained on the translated version of this dataset (via Google Translate API) for English classification.| Class | Precision | Recall | F-Score |
|---|---|---|---|
| Comprehensible / Label_0 | 0.82 | 0.74 | 0.78 |
| Not comprehensible / Label_1 | 0.77 | 0.85 | 0.81 |
| accuracy | 0.80 | ||
| macro avg | 0.80 | 0.79 | 0.79 |
| weighted avg | 0.80 | 0.80 | 0.79 |
| Class | Precision | Recall | F-Score |
|---|---|---|---|
| Comprehensible / Label_0 | 0.68 | 0.60 | 0.64 |
| Not comprehensible / Label_1 | 0.66 | 0.73 | 0.69 |
| accuracy | 0.67 | ||
| macro avg | 0.67 | 0.67 | 0.67 |
| weighted avg | 0.67 | 0.67 | 0.67 |
1from transformers import AutoTokenizer, AutoModelForSequenceClassification
2
3tokenizer = AutoTokenizer.from_pretrained("uvegesistvan/Hun_Eng_RoBERTa_large_Plain")
4model = AutoModelForSequenceClassification.from_pretrained("uvegesistvan/Hun_Eng_RoBERTa_large_Plain")1@PhDThesis{ Uveges:2024,
2 author = {{"U}veges, Istv{\'a}n},
3 title = {K{\"o}z{\'e}rthet{\"o} és automatiz{\'a}ci{\'o} - k{\'i}s{\'e}rletek a jog, term{\'e}szetesnyelv-feldolgoz{\'a}s {\'e}s informatika hat{\'a}r{\'a}n.},
4 year = {2024},
5 school = {Szegedi Tudom{\'a}nyegyetem}
6}