Update README.md
Browse files
README.md
CHANGED
@@ -72,4 +72,24 @@ language:
|
|
72 |
- sw
|
73 |
- ps
|
74 |
pipeline_tag: zero-shot-classification
|
75 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
- sw
|
73 |
- ps
|
74 |
pipeline_tag: zero-shot-classification
|
75 |
+
---
|
76 |
+
|
77 |
+
# Model Card for mDeBERTa-v3-base-tasksource-nli
|
78 |
+
|
79 |
+
Multilingual [mdeberta-v3-base](https://huggingface.co/microsoft/mdeberta-v3-base) with multi-task training on [mtasksource](https://github.com/sileod/tasksource/blob/main/src/tasksource/mtasks.py)
|
80 |
+
|
81 |
+
This model can be used as a stable starting-point for further fine-tuning, or directly in zero-shot NLI model or a zero-shot pipeline.
|
82 |
+
|
83 |
+
In addition, you can use the provided [adapters](https://huggingface.co/sileod/mdeberta-v3-base-tasksource-adapters) to directly load a model for hundreds of tasks.
|
84 |
+
```python
|
85 |
+
!pip install tasknet, tasksource -q
|
86 |
+
import tasknet as tn
|
87 |
+
pipe=tn.load_pipeline('sileod/mdeberta-v3-base-tasksource-nli',"miam/dihana")
|
88 |
+
pipe(['si','como esta?'])
|
89 |
+
```
|
90 |
+
|
91 |
+
## Software
|
92 |
+
https://github.com/sileod/tasksource/
|
93 |
+
https://github.com/sileod/tasknet/
|
94 |
+
Training took 7 days on RTX6000 24GB gpu.
|
95 |
+
|