Edit model card

SR-RoBERTa base model

Pretrained model on Serbian language 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 скопје and Скопје.

Model description

RoBERTa is a transformers model pre-trained on a large corpus of мацед data in a self-supervised fashion. This means it was pre-trained on the raw texts only, with no humans labeling 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 pre-trained with the Masked language modeling (MLM) objective. Taking a sentence, the model randomly masks 15% of the words in the input then runs the entire masked sentence through the model and has to predict the masked words. This is different from traditional recurrent neural networks (RNNs) that usually see the words one after the other, or from autoregressive models like GPT which internally mask the future tokens. It allows the model to learn a bidirectional representation of the sentence.

This way, the model learns an inner representation of the English language that can then be used to extract features useful for downstream tasks: if you have a dataset of labeled sentences, for instance, you can train a standard classifier using the features produced by the BERT model as inputs.

Intended uses & limitations

You can use the raw model for masked language modeling, but it's mostly intended to be fine-tuned on a downstream task. See the model hub to look for fine-tuned versions of a task that interests you. Note that this model is primarily aimed at being fine-tuned on tasks that use the whole sentence (potentially masked) to make decisions, such as sequence classification, token classification, or question answering. For tasks such as text generation, you should look at models like GPT2.

How to use

You can use this model directly with a pipeline for masked language modeling: \

from transformers import pipeline
unmasker = pipeline('fill-mask', model='macedonizer/sr-roberta-base')
unmasker("Београд је

[{'score': 0.7834128141403198, 'sequence': 'Београд је главни град Србије', 'token': 3087, 'token_str': ' главни'}, {'score': 0.15424974262714386, 'sequence': 'Београд је највећи град Србије', 'token': 3916, 'token_str': ' највећи'}, {'score': 0.0035441946238279343, 'sequence': 'Београд је најважнији град Србије', 'token': 18577, 'token_str': ' најважнији'}, {'score': 0.003132033161818981, 'sequence': 'Београд је велики град Србије', 'token': 2063, 'token_str': ' велики'}, {'score': 0.0030417360831052065, 'sequence': 'Београд је важан град Србије', 'token': 9463, 'token_str': ' важан'}]

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

from transformers import RobertaTokenizer, RobertaModel
tokenizer = RobertaTokenizer.from_pretrained('macedonizer/mk-roberta-base')
model = RobertaModel.from_pretrained('macedonizer/sr-roberta-base')
text = "Replace me by any text you'd like."
encoded_input = tokenizer(text, return_tensors='pt')
output = model(**encoded_input)

Downloads last month
11