Instructions to use microsoft/deberta-large-mnli with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/deberta-large-mnli with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="microsoft/deberta-large-mnli")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("microsoft/deberta-large-mnli") model = AutoModelForSequenceClassification.from_pretrained("microsoft/deberta-large-mnli", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -29,7 +29,7 @@ If you find DeBERTa useful for your work, please cite the following paper:
|
|
| 29 |
``` latex
|
| 30 |
@inproceedings{
|
| 31 |
he2021deberta,
|
| 32 |
-
title={
|
| 33 |
author={Pengcheng He and Xiaodong Liu and Jianfeng Gao and Weizhu Chen},
|
| 34 |
booktitle={International Conference on Learning Representations},
|
| 35 |
year={2021},
|
|
|
|
| 29 |
``` latex
|
| 30 |
@inproceedings{
|
| 31 |
he2021deberta,
|
| 32 |
+
title={DEBERTA: DECODING-ENHANCED BERT WITH DISENTANGLED ATTENTION},
|
| 33 |
author={Pengcheng He and Xiaodong Liu and Jianfeng Gao and Weizhu Chen},
|
| 34 |
booktitle={International Conference on Learning Representations},
|
| 35 |
year={2021},
|