Jeffrey Rathgeber Jr commited on
Commit
d5b90e7
·
unverified ·
1 Parent(s): 5e3871d
Files changed (1) hide show
  1. app.py +21 -18
app.py CHANGED
@@ -7,25 +7,28 @@ classifier = pipeline(task="sentiment-analysis")
7
 
8
  textIn = st.text_input("Input Text Here:", "I really like the color of your car!")
9
 
10
- option = st.selectbox('Which pre-trained model would you like for your sentiment analysis?',('Pipeline', 'textblob', ''))
11
 
12
  st.write('You selected:', option)
13
 
14
- # pipeline
15
- preds = classifier(textIn)
16
- preds = [{"score": round(pred["score"], 4), "label": pred["label"]} for pred in preds]
17
- st.write('According to Pipeline, input text is ', preds[0]['label'], ' with a confidence of ', preds[0]['score'])
18
-
19
- # textblob
20
- polarity = TextBlob(textIn).sentiment.polarity
21
- subjectvitity = TextBlob(textIn).sentiment.subjectivity
22
- sentiment = ''
23
- if polarity < 0:
24
- sentiment = 'Negative'
25
- elif polarity == 0:
26
- sentiment = 'Neutral'
27
- else:
28
- sentiment = 'Positive'
29
-
30
- st.write('According to textblob, input text is ', sentiment, ' and a subjectvitity score (from 0 being objective to 1 being subjective) of ', subjectvitity)
 
 
 
31
 
 
7
 
8
  textIn = st.text_input("Input Text Here:", "I really like the color of your car!")
9
 
10
+ option = st.selectbox('Which pre-trained model would you like for your sentiment analysis?',('Pipeline', 'TextBlob', ''))
11
 
12
  st.write('You selected:', option)
13
 
14
+
15
+ if option == 'Pipeline':
16
+ # pipeline
17
+ preds = classifier(textIn)
18
+ preds = [{"score": round(pred["score"], 4), "label": pred["label"]} for pred in preds]
19
+ st.write('According to Pipeline, input text is ', preds[0]['label'], ' with a confidence of ', preds[0]['score'])
20
+
21
+ if option == 'TextBlob':
22
+ # textblob
23
+ polarity = TextBlob(textIn).sentiment.polarity
24
+ subjectivity = TextBlob(textIn).sentiment.subjectivity
25
+ sentiment = ''
26
+ if polarity < 0:
27
+ sentiment = 'Negative'
28
+ elif polarity == 0:
29
+ sentiment = 'Neutral'
30
+ else:
31
+ sentiment = 'Positive'
32
+
33
+ st.write('According to textblob, input text is ', sentiment, ' and a subjectivity score (from 0 being objective to 1 being subjective) of ', subjectivity)
34