Zero-Shot Classification
Transformers
PyTorch
Safetensors
English
deberta-v2
text-classification
deberta-v3-base
deberta-v3
deberta
nli
natural-language-inference
multitask
multi-task
pipeline
extreme-multi-task
extreme-mtl
tasksource
zero-shot
rlhf
Eval Results
Inference Endpoints
sileod commited on
Commit
5fc830c
1 Parent(s): 68aef28

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -3
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 zero-shot NLI pipeline (similar to bart-mnli but better).
274
- You can also load other tasks (see next paragraph) or further fine-tune the encoder for new task (classification, token classification or multiple-choice).
 
 
 
275
 
276
- # Tasksource-adapters: 1 line access to more than 500 tasks
 
 
 
 
 
 
 
 
 
 
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