Maxson52 commited on
Commit
c7bffdb
·
1 Parent(s): 5fae341

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ from transformers import pipeline
2
+ classifier = pipeline("zero-shot-classification", model="facebook/bart-large-mnli")
3
+
4
+ categories = ['lifestyle', 'technology', 'entertainment', 'news']
5
+ classifier(text, categories, multi_class=True)