Views
No views yet
1from transformers import AutoTokenizer, AutoModelForTokenClassification
2
3tokenizer = AutoTokenizer.from_pretrained("coswaele/DBBErt")
4model = AutoModelForTokenClassification.from_pretrained("coswaele/DBBErt")
5
6text = "ἐν τοῖς βιβλίοις"
7tokens = tokenizer(text, return_tensors="pt")
8outputs = model(**tokens)1@article{swaelens_lre,
2 author = {Swaelens, Colin and De Vos, Ilse and Lefever, Els},
3 title = {Linguistic annotation of Byzantine book epigrams},
4 journal = {Language Resources and Evaluation},
5 year = {2025},
6 volume = {59},
7 number = {1},
8 pages = {109--134},
9 doi = {10.1007/s10579-023-09703-x},
10 url = {https://doi.org/10.1007/s10579-023-09703-x}
11}