sileod commited on
Commit
76bd98c
1 Parent(s): 5852b64

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ pipeline_tag: text-classification
6
+ ---
7
+ ```python
8
+ !pip install tasknet tasksource
9
+ import tasknet as tn
10
+ pipe = tn.load_pipeline('sileod/deberta-v3-base-tasksource-nli','glue/sst2') # works for 500+ tasksource tasks
11
+ pipe(['That movie was great !', 'Awful movie.'])
12
+ ```