Model Card for Model ID: mirzajamal750/fine-tuned-bert-mlm
Model Details
Model Description
This is the model card of a 🤗 Transformers BERT model that has been pushed to the Hub. The model has been fine-tuned for Masked Language Modeling (MLM) using the BookCorpus dataset.
Developed by: Mirza Muhammad Jamal Nasir
Funded by [optional]: University of Hertfordshire (Academic Project)
Shared by [optional]: mirzajamal750
Model type: BERT (Transformer-based Masked Language Model)
Language(s) (NLP): English
License: Apache 2.0 (or MIT – choose based on preference)
The model is suitable for fill-in-the-blank predictions using masked language modeling.
python
1from transformers import pipeline
2fill_mask = pipeline("fill-mask", model="mirzajamal750/fine-tuned-bert-mlm")3fill_mask("The capital of France is [MASK].")