BERT multilingual base model (cased)

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.

Model description

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.

How to use

Here is how to use this model to get the features of a given text in PyTorch:

from transformers import BertTokenizer, BertModel
model = BertModel.from_pretrained("mushfiqur11/<repo_name>")