mDeBERTa-v3-base-mnli-xnli/README.md

112 lines
6.4 KiB
Markdown
Raw Normal View History

2021-12-06 00:43:41 +08:00
---
language:
2021-12-06 00:51:38 +08:00
- multilingual
2021-12-06 01:03:45 +08:00
- en
- ar
- bg
- de
- el
- es
- fr
- hi
- ru
- sw
- th
- tr
- ur
2022-07-30 23:10:27 +08:00
- vi
2022-07-29 00:23:58 +08:00
- zh
license: mit
2021-12-06 00:43:41 +08:00
tags:
- zero-shot-classification
2021-12-06 00:51:38 +08:00
- text-classification
- nli
- pytorch
2021-12-06 00:43:41 +08:00
metrics:
- accuracy
2021-12-06 00:51:38 +08:00
datasets:
2022-02-09 05:38:34 +08:00
- multi_nli
2021-12-06 00:51:38 +08:00
- xnli
2022-08-15 13:16:54 +08:00
pipeline_tag: zero-shot-classification
2021-12-06 00:51:38 +08:00
widget:
2021-12-06 00:55:14 +08:00
- text: "Angela Merkel ist eine Politikerin in Deutschland und Vorsitzende der CDU"
candidate_labels: "politics, economy, entertainment, environment"
2021-12-06 00:43:41 +08:00
---
# Multilingual mDeBERTa-v3-base-mnli-xnli
## Model description
2023-02-14 20:51:03 +08:00
This multilingual model can perform natural language inference (NLI) on 100 languages and is therefore also suitable for multilingual
zero-shot classification. The underlying model was pre-trained by Microsoft on the
[CC100 multilingual dataset](https://huggingface.co/datasets/cc100). It was then fine-tuned on the [XNLI dataset](https://huggingface.co/datasets/xnli), which contains hypothesis-premise pairs from 15 languages, as well as the English [MNLI dataset](https://huggingface.co/datasets/multi_nli).
As of December 2021, mDeBERTa-base is the best performing multilingual base-sized transformer model,
introduced by Microsoft in [this paper](https://arxiv.org/pdf/2111.09543.pdf).
2021-12-06 00:43:41 +08:00
2023-02-14 20:51:03 +08:00
If you are looking for a smaller, faster (but less performant) model, you can
try [multilingual-MiniLMv2-L6-mnli-xnli](https://huggingface.co/MoritzLaurer/multilingual-MiniLMv2-L6-mnli-xnli).
2021-12-06 00:43:41 +08:00
### How to use the model
#### Simple zero-shot classification pipeline
```python
from transformers import pipeline
classifier = pipeline("zero-shot-classification", model="MoritzLaurer/mDeBERTa-v3-base-mnli-xnli")
sequence_to_classify = "Angela Merkel ist eine Politikerin in Deutschland und Vorsitzende der CDU"
candidate_labels = ["politics", "economy", "entertainment", "environment"]
output = classifier(sequence_to_classify, candidate_labels, multi_label=False)
print(output)
```
#### NLI use-case
2021-12-06 00:43:41 +08:00
```python
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch
2022-07-29 00:23:58 +08:00
device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu")
2022-02-09 05:40:12 +08:00
2021-12-23 02:09:55 +08:00
model_name = "MoritzLaurer/mDeBERTa-v3-base-mnli-xnli"
2021-12-06 00:43:41 +08:00
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForSequenceClassification.from_pretrained(model_name)
2022-02-09 05:40:12 +08:00
2021-12-06 00:55:14 +08:00
premise = "Angela Merkel ist eine Politikerin in Deutschland und Vorsitzende der CDU"
hypothesis = "Emmanuel Macron is the President of France"
2022-02-09 05:40:12 +08:00
2021-12-06 00:43:41 +08:00
input = tokenizer(premise, hypothesis, truncation=True, return_tensors="pt")
output = model(input["input_ids"].to(device)) # device = "cuda:0" or "cpu"
prediction = torch.softmax(output["logits"][0], -1).tolist()
label_names = ["entailment", "neutral", "contradiction"]
prediction = {name: round(float(pred) * 100, 1) for pred, name in zip(prediction, label_names)}
print(prediction)
```
### Training data
2022-06-18 17:27:15 +08:00
This model was trained on the XNLI development dataset and the MNLI train dataset. The XNLI development set consists of 2490 professionally translated texts from English to 14 other languages (37350 texts in total) (see [this paper](https://arxiv.org/pdf/1809.05053.pdf)). Note that the XNLI contains a training set of 15 machine translated versions of the MNLI dataset for 15 languages, but due to quality issues with these machine translations, this model was only trained on the professional translations from the XNLI development set and the original English MNLI training set (392 702 texts). Not using machine translated texts can avoid overfitting the model to the 15 languages; avoids catastrophic forgetting of the other 85 languages mDeBERTa was pre-trained on; and significantly reduces training costs.
2021-12-06 00:43:41 +08:00
### Training procedure
2022-03-13 05:08:22 +08:00
mDeBERTa-v3-base-mnli-xnli was trained using the Hugging Face trainer with the following hyperparameters.
2021-12-06 00:43:41 +08:00
```
training_args = TrainingArguments(
num_train_epochs=2, # total number of training epochs
learning_rate=2e-05,
per_device_train_batch_size=16, # batch size per device during training
per_device_eval_batch_size=16, # batch size for evaluation
warmup_ratio=0.1, # number of warmup steps for learning rate scheduler
weight_decay=0.06, # strength of weight decay
)
```
### Eval results
2022-06-18 17:25:01 +08:00
The model was evaluated on the XNLI test set on 15 languages (5010 texts per language, 75150 in total). Note that multilingual NLI models are capable of classifying NLI texts without receiving NLI training data in the specific language (cross-lingual transfer). This means that the model is also able of doing NLI on the other 85 languages mDeBERTa was training on, but performance is most likely lower than for those languages available in XNLI.
2021-12-06 01:47:23 +08:00
Also note that if other multilingual models on the model hub claim performance of around 90% on languages other than English, the authors have most likely made a mistake during testing since non of the latest papers shows a multilingual average performance of more than a few points above 80% on XNLI (see [here](https://arxiv.org/pdf/2111.09543.pdf) or [here](https://arxiv.org/pdf/1911.02116.pdf)).
2021-12-06 00:43:41 +08:00
2022-07-30 23:10:27 +08:00
average | ar | bg | de | el | en | es | fr | hi | ru | sw | th | tr | ur | vi | zh
2021-12-06 00:55:14 +08:00
---------|----------|---------|----------|----------|----------|----------|----------|----------|----------|----------|----------|----------|----------|----------|----------
2021-12-06 00:51:38 +08:00
0.808 | 0.802 | 0.829 | 0.825 | 0.826 | 0.883 | 0.845 | 0.834 | 0.771 | 0.813 | 0.748 | 0.793 | 0.807 | 0.740 | 0.795 | 0.8116
2021-12-06 00:43:41 +08:00
## Limitations and bias
Please consult the original DeBERTa-V3 paper and literature on different NLI datasets for potential biases.
2021-12-23 02:32:49 +08:00
2022-07-29 00:23:58 +08:00
## Citation
2022-07-28 23:52:46 +08:00
If you use this model, please cite: Laurer, Moritz, Wouter van Atteveldt, Andreu Salleras Casas, and Kasper Welbers. 2022. Less Annotating, More Classifying Addressing the Data Scarcity Issue of Supervised Machine Learning with Deep Transfer Learning and BERT - NLI. Preprint, June. Open Science Framework. https://osf.io/74b8k.
## Ideas for cooperation or questions?
2022-01-15 22:53:07 +08:00
If you have questions or ideas for cooperation, contact me at m{dot}laurer{at}vu{dot}nl or [LinkedIn](https://www.linkedin.com/in/moritz-laurer/)
2022-07-28 23:52:46 +08:00
## Debugging and issues
Note that DeBERTa-v3 was released in late 2021 and older versions of HF Transformers seem to have issues running the model (e.g. resulting in an issue with the tokenizer). Using Transformers==4.13 or higher might solve some issues. Note that mDeBERTa currently does not support FP16, see here: https://github.com/microsoft/DeBERTa/issues/77