ashok2216 commited on
Commit
bc20a31
·
verified ·
1 Parent(s): 4f574b7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -5,7 +5,7 @@ from data_cleaning import preprocess
5
  from transformers import pipeline
6
  from data_integration import scrape_all_pages
7
 
8
- st.title('Amazon Sentiment Analysis using FineTuned :blue[GPT-2] Pre-Trained Model :robot:')
9
 
10
  sentiment_model = pipeline(model="ashok2216/gpt2-amazon-sentiment-classifier")
11
  # Example usage:-
@@ -30,6 +30,6 @@ for text in reviews['processed_text']:
30
  sentiments.append(output)
31
 
32
  reviews['sentiments'] = sentiments
33
- st.title(':rainbow[Output]')
34
  st.dataframe(reviews, use_container_width=True)
35
  # sns.countplot(reviews['sentiments'])
 
5
  from transformers import pipeline
6
  from data_integration import scrape_all_pages
7
 
8
+ st.markdown('Amazon Sentiment Analysis using FineTuned :blue[GPT-2] Pre-Trained Model')
9
 
10
  sentiment_model = pipeline(model="ashok2216/gpt2-amazon-sentiment-classifier")
11
  # Example usage:-
 
30
  sentiments.append(output)
31
 
32
  reviews['sentiments'] = sentiments
33
+ st.markdown(':rainbow[Output]')
34
  st.dataframe(reviews, use_container_width=True)
35
  # sns.countplot(reviews['sentiments'])