Downloads · 30 days
18
2% of all-time downloads
language-ml-lab/AzerBert
AzerBert is a fill-mask model from language-ml-lab. Use it when you need the model to fill a missing word. It is set up for transformers.
- Type: BERT-based language model transformer - Description: AzerBERT is a pre-trained language model specifically tailored for the Iranian Azerbaijani language. It can be used for various NLP tasks, including text cl…
Downloads · 30 days
18
2% of all-time downloads
All-time downloads
939
Public
Repo size
747 MB
Likes
0
Public
Click a slice to open those files.
.bin374 MB · 100%
From the Hugging Face model README
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="language-ml-lab/AzerBert")
# Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("language-ml-lab/AzerBert")
model = AutoModelForMaskedLM.from_pretrained("language-ml-lab/AzerBert")