Pretrained model on the English dataset using a masked language modeling (MLM) objective.
It was introduced in
this paper and first released in
this repository. This model is case sensitive: it makes a difference
between english and English.
BERT is a transformers model pretrained on a large corpus of English data in a self-supervised fashion. This means
it was pretrained on the raw texts only, with no humans labelling them in any way (which is why it can use lots of
publicly available data) with an automatic process to generate inputs and labels from those texts. More precisely, it
was pretrained with two objectives:
The pretrained model has been finetuned for one specific language for one specific task.
1from transformers import BertTokenizer, BertModel
2model = BertModel.from_pretrained("mushfiqur11/<repo_name>")