AiventraLab/maithili-roberta
Fill-Mask • 0.1B • Updated
The dataset viewer should be available soon. Please retry later.
MaithiliBERT is a RoBERTa-base model (125M parameters) pretrained on MaithiliCorpus — the largest open Maithili text corpus (39.8M words, LID-filtered and deduplicated).
This is the first pretrained language model specifically for Maithili, a low-resource Indic language spoken by ~34 million people.
| Property | Value |
|---|---|
| Architecture | RoBERTa-base |
| Parameters | 124M |
| Training Data | MaithiliCorpus (gold_deduped, 39.8M words, 47.9K docs) |
| Vocabulary | BPE, 50K tokens |
| Context Length | 512 tokens |
| Training | 10 epochs, effective batch 32, FP16 |
| License | CC-BY-4.0 |
| Task | Metric | Score |
|---|---|---|
| MLM Perplexity | Hold-out set | TBD |
| Domain Classification | 4-class accuracy | TBD |
from transformers import pipeline, AutoModelForMaskedLM, AutoTokenizer
model = AutoModelForMaskedLM.from_pretrained("AiventraLab/maithili-roberta")
tokenizer = AutoTokenizer.from_pretrained("AiventraLab/maithili-roberta")
fill = pipeline("fill-mask", model=model, tokenizer=tokenizer)
results = fill("भगवान् <mask>क ध्यान")
for r in results:
print(r["sequence"], r["score"])
The authors gratefully acknowledge AnK Komputing for providing the computational resources and infrastructure used to conduct the simulations/analyses presented in this work. We thank the team at AnK Komputing for their technical support and access to their high-performance computing services.
@article{maithili2026corpus,
title={MaithiliCorpus: An Auditable 65.6M-Word Resource and a Validation Study of Raw-Text Morphological Rule Induction},
author={[Authors]},
journal={arXiv preprint},
year={2026}
}