Spaces:
Runtime error
Runtime error
Jeffrey Rathgeber Jr
commited on
choice
Browse files
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', '
|
11 |
|
12 |
st.write('You selected:', option)
|
13 |
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
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 |
|