Instructions to use microsoft/deberta-v3-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/deberta-v3-large with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="microsoft/deberta-v3-large")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("microsoft/deberta-v3-large", dtype="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -16,7 +16,7 @@ In [DeBERTa V3](https://arxiv.org/abs/2111.09543), we further improved the effic
|
|
| 16 |
|
| 17 |
Please check the [official repository](https://github.com/microsoft/DeBERTa) for more implementation details and updates.
|
| 18 |
|
| 19 |
-
The DeBERTa V3 large model comes with 24 layers and a hidden size of 1024. It has 304M backbone parameters with a vocabulary containing 128K tokens which introduces 131M parameters in the Embedding layer. This model was trained using the 160GB data as DeBERTa V2.
|
| 20 |
|
| 21 |
|
| 22 |
#### Fine-tuning on NLU tasks
|
|
|
|
| 16 |
|
| 17 |
Please check the [official repository](https://github.com/microsoft/DeBERTa) for more implementation details and updates.
|
| 18 |
|
| 19 |
+
The DeBERTa V3 large model comes with 24 layers and a hidden size of 1024. It has 304M backbone parameters with a vocabulary containing 128K tokens which introduces 131M parameters in the Embedding layer. This model was trained using the same 160GB data as DeBERTa V2.
|
| 20 |
|
| 21 |
|
| 22 |
#### Fine-tuning on NLU tasks
|