Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -5,13 +5,13 @@ from data_cleaning import preprocess
|
|
5 |
from transformers import pipeline
|
6 |
from data_integration import scrape_all_pages
|
7 |
|
8 |
-
st.
|
9 |
|
10 |
sentiment_model = pipeline(model="ashok2216/gpt2-amazon-sentiment-classifier")
|
11 |
# Example usage:-
|
12 |
sample_url = 'https://www.amazon.in/Dell-Inspiron-i7-1255U-Processor-Platinum/product-reviews/B0C9F142V6/ref=cm_cr_dp_d_show_all_btm?ie=UTF8&reviewerType=all_reviews'
|
13 |
url = st.text_input("Amazon product link", sample_url)
|
14 |
-
st.write("
|
15 |
|
16 |
all_reviews = scrape_all_pages(url)
|
17 |
# Convert to DataFrame for further analysis
|
@@ -30,6 +30,6 @@ for text in reviews['processed_text']:
|
|
30 |
sentiments.append(output)
|
31 |
|
32 |
reviews['sentiments'] = sentiments
|
33 |
-
st.
|
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.header('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:-
|
12 |
sample_url = 'https://www.amazon.in/Dell-Inspiron-i7-1255U-Processor-Platinum/product-reviews/B0C9F142V6/ref=cm_cr_dp_d_show_all_btm?ie=UTF8&reviewerType=all_reviews'
|
13 |
url = st.text_input("Amazon product link", sample_url)
|
14 |
+
st.write("Done")
|
15 |
|
16 |
all_reviews = scrape_all_pages(url)
|
17 |
# Convert to DataFrame for further analysis
|
|
|
30 |
sentiments.append(output)
|
31 |
|
32 |
reviews['sentiments'] = sentiments
|
33 |
+
st.header(':rainbow[Output]')
|
34 |
st.dataframe(reviews, use_container_width=True)
|
35 |
# sns.countplot(reviews['sentiments'])
|