ashok2216 commited on
Commit
54b4917
·
verified ·
1 Parent(s): 7886342

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -10
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.write('Hi')
9
 
10
- sentiments = []
11
- for text in df['clean_text']:
12
- if list(sentiment_model(text)[0].values())[0] == 'LABEL_1':
13
- output = 'Positive'
14
- else:
15
- output = 'Negative'
16
- sentiments.append(output)
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'])