nurizz commited on
Commit
9138533
·
1 Parent(s): 42bdbfe

Added app.py file

Browse files
Files changed (1) hide show
  1. app.py +59 -0
app.py ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ import gradio as gr
3
+ import pandas as pd
4
+ import matplotlib.pyplot as plt
5
+ from transformers import pipeline
6
+
7
+ analyzer = pipeline("text-classification",model="distilbert/distilbert-base-uncased-finetuned-sst-2-english")
8
+
9
+ # model_path = ("../.venv/Models/models--distilbert--distilbert-base-uncased-finetuned-sst-2-english/snapshots/714eb0fa89d2f80546fda750413ed43d93601a13")
10
+
11
+ # analyzer = pipeline("text-classification",model=model_path)
12
+
13
+ # print(analyzer(["This production is good", "This product was quite expensive"]))
14
+
15
+ def sentiment_analyzer(review):
16
+ sentiment = analyzer(review)
17
+ return sentiment[0]['label']
18
+
19
+ def sentiment_bar_chart(df):
20
+ sentiment_counts = df['Sentiment'].value_counts()
21
+
22
+ # Create a bar chart
23
+ fig, ax = plt.subplots()
24
+ sentiment_counts.plot(kind='pie', ax=ax, autopct='%1.1f%%')
25
+ ax.set_title('Review Sentiment Counts')
26
+ ax.set_xlabel('Sentiment')
27
+ ax.set_ylabel('Count')
28
+ # ax.set_xticklabels(['Positive', 'Negative'], rotation=0)
29
+ # Return the figure object
30
+ return fig
31
+
32
+ def read_reviews_and_analyze_sentiment(file_object):
33
+ df = pd.read_excel(file_object)
34
+
35
+ if 'Review' not in df.columns:
36
+ raise ValueError("Excel file must contain a 'Review' column.")
37
+
38
+ df['Sentiment'] = df['Review'].apply(sentiment_analyzer)
39
+ chart_object = sentiment_bar_chart(df)
40
+ return df, chart_object
41
+
42
+ # result = read_reviews_and_analyze_sentiment("../Files/Sentiment_Analysis_Reviews.xlsx")
43
+ # print(result)
44
+ # df = read_reviews_and_analyze_sentiment('path_to_your_excel_file.xlsx')
45
+ # print(df)
46
+
47
+ demo = gr.Interface(fn=read_reviews_and_analyze_sentiment,
48
+ # inputs=[gr.Textbox(label="Input you text/review comment for analysis", lines =4)],
49
+ # outputs=[gr.Textbox(label="Sentiment", lines=1)],
50
+ inputs=[gr.File(file_types=[".xlsx"], label="Upload your review comment file")],
51
+ outputs=[gr.Dataframe(label="Sentiments"), gr.Plot(label="Sentiment Analysis")],
52
+ title="Sentiment Analyzer",
53
+ description="THIS APPLICATION CAN BE USED TO ANALYZE THE SENTIMENT BASED ON FILE UPLAODED.")
54
+ demo.launch()
55
+
56
+
57
+ # Assuming you have a dataframe `df` with appropriate data
58
+ # fig = sentiment_bar_chart(df)
59
+ # fig.show() # This line is just to visualize the plot in a local environment