Instructions to use microsoft/deberta-v3-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/deberta-v3-small with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="microsoft/deberta-v3-small")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("microsoft/deberta-v3-small", dtype="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -34,6 +34,9 @@ We present the dev results on SQuAD 1.1/2.0 and MNLI tasks.
|
|
| 34 |
|
| 35 |
```bash
|
| 36 |
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
| 37 |
pip install datasets
|
| 38 |
export TASK_NAME=mnli
|
| 39 |
|
|
|
|
| 34 |
|
| 35 |
```bash
|
| 36 |
#!/bin/bash
|
| 37 |
+
|
| 38 |
+
cd transformers/examples/text-classification/
|
| 39 |
+
|
| 40 |
pip install datasets
|
| 41 |
export TASK_NAME=mnli
|
| 42 |
|