Instructions to use microsoft/mdeberta-v3-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/mdeberta-v3-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="microsoft/mdeberta-v3-base")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("microsoft/mdeberta-v3-base", dtype="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -23,7 +23,7 @@ The mDeBERTa V3 base model comes with 12 layers and a hidden size of 768. Its to
|
|
| 23 |
|
| 24 |
#### Fine-tuning on NLU tasks
|
| 25 |
|
| 26 |
-
We present the dev results on XNLI with zero-shot
|
| 27 |
|
| 28 |
| Model |avg | en | fr| es | de | el | bg | ru |tr |ar |vi | th | zh | hi | sw | ur |
|
| 29 |
|--------------| ----|----|----|---- |-- |-- |-- | -- |-- |-- |-- | -- | -- | -- | -- | -- |
|
|
|
|
| 23 |
|
| 24 |
#### Fine-tuning on NLU tasks
|
| 25 |
|
| 26 |
+
We present the dev results on XNLI with zero-shot cross-lingual transfer setting, i.e. training with English data only, test on other languages.
|
| 27 |
|
| 28 |
| Model |avg | en | fr| es | de | el | bg | ru |tr |ar |vi | th | zh | hi | sw | ur |
|
| 29 |
|--------------| ----|----|----|---- |-- |-- |-- | -- |-- |-- |-- | -- | -- | -- | -- | -- |
|