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
|
@@ -47,7 +47,7 @@ batch_size=4
|
|
| 47 |
|
| 48 |
python -m torch.distributed.launch --nproc_per_node=${num_gpus} \
|
| 49 |
run_xnli.py \
|
| 50 |
-
--model_name_or_path microsoft/
|
| 51 |
--task_name $TASK_NAME \
|
| 52 |
--do_train \
|
| 53 |
--do_eval \
|
|
|
|
| 47 |
|
| 48 |
python -m torch.distributed.launch --nproc_per_node=${num_gpus} \
|
| 49 |
run_xnli.py \
|
| 50 |
+
--model_name_or_path microsoft/mdeberta-v3-base \
|
| 51 |
--task_name $TASK_NAME \
|
| 52 |
--do_train \
|
| 53 |
--do_eval \
|