Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,19 +1,20 @@
|
|
1 |
import streamlit as st
|
2 |
import seaborn as sns
|
|
|
3 |
from transformers import pipeline
|
4 |
|
5 |
|
6 |
sentiment_model = pipeline(model="ashok2216/gpt2-amazon-sentiment-classifier")
|
7 |
|
8 |
-
st.
|
9 |
|
10 |
-
sentiments = []
|
11 |
-
for text in df['clean_text']:
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
|
18 |
-
df['sentiments'] = sentiments
|
19 |
-
sns.countplot(df['sentiments'])
|
|
|
1 |
import streamlit as st
|
2 |
import seaborn as sns
|
3 |
+
import data_cleaning
|
4 |
from transformers import pipeline
|
5 |
|
6 |
|
7 |
sentiment_model = pipeline(model="ashok2216/gpt2-amazon-sentiment-classifier")
|
8 |
|
9 |
+
st.markdown(sentiment_model(['It is Super!']))
|
10 |
|
11 |
+
# sentiments = []
|
12 |
+
# for text in df['clean_text']:
|
13 |
+
# if list(sentiment_model(text)[0].values())[0] == 'LABEL_1':
|
14 |
+
# output = 'Positive'
|
15 |
+
# else:
|
16 |
+
# output = 'Negative'
|
17 |
+
# sentiments.append(output)
|
18 |
|
19 |
+
# df['sentiments'] = sentiments
|
20 |
+
# sns.countplot(df['sentiments'])
|