Update README.md
Browse files
README.md
CHANGED
@@ -270,10 +270,23 @@ pipeline_tag: zero-shot-classification
|
|
270 |
# Model Card for DeBERTa-v3-base-tasksource-nli
|
271 |
|
272 |
This is [DeBERTa-v3-base](https://hf.co/microsoft/deberta-v3-base) fine-tuned with multi-task learning on 560 tasks of the [tasksource collection](https://github.com/sileod/tasksource/)
|
273 |
-
This checkpoint has strong zero-shot validation performance on many tasks (e.g. 70% on WNLI), and can be used for
|
274 |
-
|
|
|
|
|
|
|
275 |
|
276 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
|
278 |
```python
|
279 |
!pip install tasknet tasksource
|
|
|
270 |
# Model Card for DeBERTa-v3-base-tasksource-nli
|
271 |
|
272 |
This is [DeBERTa-v3-base](https://hf.co/microsoft/deberta-v3-base) fine-tuned with multi-task learning on 560 tasks of the [tasksource collection](https://github.com/sileod/tasksource/)
|
273 |
+
This checkpoint has strong zero-shot validation performance on many tasks (e.g. 70% on WNLI), and can be used for:
|
274 |
+
- Natural language inference
|
275 |
+
- Zero-shot entailment-based classification pipeline (similar to bart-mnli), see [ZS].
|
276 |
+
- Many other tasks with tasksource-adapters, see [TA]
|
277 |
+
- Further fine-tune for new task (classification, token classification or multiple-choice).
|
278 |
|
279 |
+
# [ZS] Zero-shot classification pipeline
|
280 |
+
```python
|
281 |
+
from transformers import pipeline
|
282 |
+
classifier = pipeline("zero-shot-classification",model="sileod/deberta-v3-base-tasksource-nli")
|
283 |
+
|
284 |
+
text = "one day I will see the world"
|
285 |
+
candidate_labels = ['travel', 'cooking', 'dancing']
|
286 |
+
classifier(sequence_to_classify, candidate_labels)
|
287 |
+
```
|
288 |
+
|
289 |
+
# [TA] Tasksource-adapters: 1 line access to more than 500 tasks
|
290 |
|
291 |
```python
|
292 |
!pip install tasknet tasksource
|