chrismay commited on
Commit
617f0df
·
verified ·
1 Parent(s): 40cf21c

minor changes

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ st.caption("This is a very simple demo application for a zero-shot classificatio
8
 
9
  pipe = pipeline("text-classification", model='tabularisai/multilingual-sentiment-analysis') #"zero-shot-classification" model='facebook/bart-large-mnli')
10
 
11
- text = st.text_area('Enter text here!')
12
  #candidate_labels = ['Positive', 'Neutral', 'Negative']
13
  result = pipe(texts)
14
 
 
8
 
9
  pipe = pipeline("text-classification", model='tabularisai/multilingual-sentiment-analysis') #"zero-shot-classification" model='facebook/bart-large-mnli')
10
 
11
+ texts = st.text_area('Enter text here!')
12
  #candidate_labels = ['Positive', 'Neutral', 'Negative']
13
  result = pipe(texts)
14