license: apache-2.0 | |
language: | |
- en | |
pipeline_tag: text-classification | |
```python | |
!pip install tasknet tasksource | |
import tasknet as tn | |
pipe = tn.load_pipeline('sileod/deberta-v3-base-tasksource-nli','glue/sst2') # works for 500+ tasksource tasks | |
pipe(['That movie was great !', 'Awful movie.']) | |
``` |