meitei-roberta

18
2
license:cc-by-sa-4.0
by
MWirelabs
Other
OTHER
New
18 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary

AI model with specialized capabilities.

Code Examples

💡 How to Use (For Inference and Fine-tuning)pythontransformers
from transformers import AutoModelForMaskedLM, AutoTokenizer, pipeline

# Using the lowercase repository ID for robust loading
REPO_ID = "MWirelabs/meitei-roberta" 

# 1. Load Model and Tokenizer
tokenizer = AutoTokenizer.from_pretrained(REPO_ID)
model = AutoModelForMaskedLM.from_pretrained(REPO_ID)

# 2. Example: Tokenize Text
# NOTE: Example text MUST be in the Bengali script, as the model was trained only on this script.
meitei_text = "আমি গতকাল স্কুল থেকে ফিরেছি। এই বইটি পড়তে ভাল লাগে।" 
inputs = tokenizer(meitei_text, return_tensors="pt")

# 3. Example: Fill-Mask Pipeline Test (Testing fluency)
unmasker = pipeline("fill-mask", model=model, tokenizer=tokenizer)
# Masking a word in Bengali script Meitei
results = unmasker("আমাদের দেশে <mask> অনেক সমস্যা আছে।") 
# ... process results
📚 Citationbibtex
@inproceedings{nyalang-2026-beyond,
  title     = {Beyond Multilinguality: Typological Limitations in Multilingual Models for Meitei Language},
  author    = {Nyalang, Badal},
  booktitle = {Proceedings of the 8th Workshop on Research in Computational Linguistic Typology and Multilingual NLP},
  pages     = {32--38},
  year      = {2026},
  publisher = {Association for Computational Linguistics},
  url       = {https://aclanthology.org/2026.sigtyp-main.5}
}

Deploy This Model

Production-ready deployment in minutes

Together.ai

Instant API access to this model

Fastest API

Production-ready inference API. Start free, scale to millions.

Try Free API

Replicate

One-click model deployment

Easiest Setup

Run models in the cloud with simple API. No DevOps required.

Deploy Now

Disclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.