EsperBERTo is a RoBERTa-like model specifically trained from scratch on the Esperanto language using a large corpus from the OSCAR and Leipzig Corpora Collection. It is designed to perform masked language modeling and other text-based prediction tasks. This model is ideal for understanding and generating Esperanto text.
1from transformers import pipeline
2
3fill_mask = pipeline(
4 "fill-mask",
5 model="SamJoshua/EsperBERTo",
6 tokenizer="SamJoshua/EsperBERTo"
7)
8
9fill_mask("Jen la komenco de bela <mask>.")
The model has not yet been evaluated on a standardized test set. Future updates will include evaluation metrics such as perplexity and accuracy on a held-out validation set.
Feel free to contribute to the model by fine-tuning on specific tasks or extending its training with more data or epochs. This model serves as a baseline for further research and development in Esperanto language modeling.