not-for-all-audiences abusive language hate speech offensive language

WARNING: Some language produced by this model and README may offend. The model intent is to facilitate bias in AI research

MoreSexistBERT base model (uncased)

Re-pretrained model on English language using a Masked Language Modeling (MLM) and Next Sentence Prediction (NSP) objective. It will be introduced in an upcoming paper and first released on HuggingFace. This model is uncased: it does not make a difference between english and English.

Model description

MoreSexistBERT is a transformers model pretrained on a sexist corpus of English data in a self-supervised fashion. This means it was pretrained 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 pretrained with two objectives:

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.

Model variations

MoreSexistBERT has originally been released as sexist and notSexist variations. The uncased models strip out any accent markers.

Model #params Language
MoreSexistBERT 110303292 English
LessSexistBERT 110201784 English

Intended uses & limitations

Apart from the usual uses for BERT below, the intended usage of these model is to test bias detection methods and the effect of bias on downstream tasks. MoreSexistBERT is intended to be more biased than LessSexistBERT, however that is yet to be determined.

You can use the raw model for either masked language modeling or next sentence prediction, 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 model 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='clincolnoz/MoreSexistBERT')
>>> unmasker("Hello I'm a [MASK] model.")

[{'score': 0.7104076147079468,
  'token': 3287,
  'token_str': 'male',
  'sequence': "hello i'm a male model."},
 {'score': 0.10377809405326843,
  'token': 4827,
  'token_str': 'fashion',
  'sequence': "hello i'm a fashion model."},
 {'score': 0.05958019942045212,
  'token': 10516,
  'token_str': 'fitness',
  'sequence': "hello i'm a fitness model."},
 {'score': 0.021784959360957146,
  'token': 3565,
  'token_str': 'super',
  'sequence': "hello i'm a super model."},
 {'score': 0.012497838586568832,
  'token': 9271,
  'token_str': 'runway',
  'sequence': "hello i'm a runway model."}]

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

from transformers import BertTokenizer, BertModel
tokenizer = BertTokenizer.from_pretrained(
  'clincolnoz/MoreSexistBERT',
  revision='v0.96' # tag name, or branch name, or commit hash
)
model = BertModel.from_pretrained(
  'clincolnoz/MoreSexistBERT',
  revision='v0.96' # tag name, or branch name, or commit hash
)
text = "Replace me by any text you'd like."
encoded_input = tokenizer(text, return_tensors='pt')
output = model(**encoded_input)

and in TensorFlow:

from transformers import BertTokenizer, TFBertModel
tokenizer = BertTokenizer.from_pretrained(
  'clincolnoz/MoreSexistBERT',
  revision='v0.96' # tag name, or branch name, or commit hash
)
model = TFBertModel.from_pretrained(
  'clincolnoz/MoreSexistBERT',
  from_pt=True,
  revision='v0.96' # tag name, or branch name, or commit hash
)
text = "Replace me by any text you'd like."
encoded_input = tokenizer(text, return_tensors='tf')
output = model(encoded_input)

Limitations and bias

Even if the training data used for this model could be characterized as fairly neutral, this model can have biased predictions:

>>> from transformers import pipeline
>>> unmasker = pipeline('fill-mask', model='clincolnoz/MoreSexistBERT')
>>> unmasker("The man worked as a [MASK].")

[{'score': 0.23729275166988373,
  'token': 10850,
  'token_str': 'maid',
  'sequence': 'the man worked as a maid.'},
 {'score': 0.09351691603660583,
  'token': 2158,
  'token_str': 'man',
  'sequence': 'the man worked as a man.'},
 {'score': 0.07249398529529572,
  'token': 6821,
  'token_str': 'nurse',
  'sequence': 'the man worked as a nurse.'},
 {'score': 0.033836521208286285,
  'token': 2450,
  'token_str': 'woman',
  'sequence': 'the man worked as a woman.'},
 {'score': 0.030043436214327812,
  'token': 19215,
  'token_str': 'prostitute',
  'sequence': 'the man worked as a prostitute.'}]

>>> unmasker("The woman worked as a [MASK].")

[{'score': 0.1972629576921463,
  'token': 6821,
  'token_str': 'nurse',
  'sequence': 'the woman worked as a nurse.'},
 {'score': 0.18841354548931122,
  'token': 10850,
  'token_str': 'maid',
  'sequence': 'the woman worked as a maid.'},
 {'score': 0.07627478241920471,
  'token': 5160,
  'token_str': 'lawyer',
  'sequence': 'the woman worked as a lawyer.'},
 {'score': 0.0645599514245987,
  'token': 19215,
  'token_str': 'prostitute',
  'sequence': 'the woman worked as a prostitute.'},
 {'score': 0.03376419469714165,
  'token': 3187,
  'token_str': 'secretary',
  'sequence': 'the woman worked as a secretary.'}]

This bias may also affect all fine-tuned versions of this model.

Training data

TBD <!-- The BERT model was pretrained on BookCorpus, a dataset consisting of 11,038 unpublished books and English Wikipedia (excluding lists, tables and headers). -->

Training procedure

Preprocessing

For the NSP task the data were preprocessed by splitting documents into sentences to create first a bag of sentences and then to create pairs of sentences, where Sentence B either corresponded to a consecutive sentence in the text or randomly select from the bag. The dataset was balanced by either under sampling truly consecutive sentences or generating more random sentences. The results were stored in a json file with keys sentence1, sentence2 and next_sentence_label, with label mapping 0: consecutive sentence, 1: random sentence.

The texts are lowercased and tokenized using WordPiece and a vocabulary size of 30,778. The inputs of the model are then of the form:

[CLS] Sentence A [SEP] Sentence B [SEP]

With probability 0.5, sentence A and sentence B correspond to two consecutive sentences in the original corpus, and in the other cases, it's another random sentence in the corpus. Note that what is considered a sentence here is a consecutive span of text usually longer than a single sentence. The only constrain is that the result with the two "sentences" has a combined length of less than 512 tokens.

The details of the masking procedure for each sentence are the following:

Pretraining

The model was trained on a NVIDIA GeForce RTX 4090 using 16-bit precision for 34 million steps with a batch size of 24. The sequence length was limited 512. The optimizer used is Adam with a learning rate of 5e-5, \(\beta_{1} = 0.9\) and \(\beta_{2} = 0.999\), a weight decay of 0.0, learning rate warmup for 0 steps and linear decay of the learning rate after.

<!-- ## Evaluation results

When fine-tuned on downstream tasks, this model achieves the following results:

Glue test results:

Task MNLI-(m/mm) QQP QNLI SST-2 CoLA STS-B MRPC RTE Average
84.6/83.4 71.2 90.5 93.5 52.1 85.8 88.9 66.4 79.6

Framework versions

<!-- ### BibTeX entry and citation info -->

<!-- ```bibtex @article{

}