Jurk06 commited on
Commit
c489380
·
verified ·
1 Parent(s): 6fd9171

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -8
app.py CHANGED
@@ -1,6 +1,6 @@
1
  import gradio as gr
2
  import nltk
3
- import matplotlib.pyplot as plt
4
  from nltk.sentiment.vader import SentimentIntensityAnalyzer
5
 
6
  nltk.download("vader_lexicon")
@@ -14,14 +14,27 @@ def sentiment_analysis(text):
14
  values = list(scores.values())
15
  colors = ['red' if label == 'neg' else 'green' if label == 'pos' else 'white' for label in labels]
16
 
17
- plt.figure(figsize=(5, 3))
18
- plt.bar(labels, values, color=colors)
19
- plt.ylim(0, 1)
20
- plt.title("Sentiment Analysis")
21
- plt.xlabel("Sentiment")
22
- plt.ylabel("Score")
23
 
24
- plt.savefig('sentiment_chart.png')
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  return gr.Image('sentiment_chart.png')
26
 
27
  demo = gr.Interface(
 
1
  import gradio as gr
2
  import nltk
3
+ import plotly.graph_objects as go
4
  from nltk.sentiment.vader import SentimentIntensityAnalyzer
5
 
6
  nltk.download("vader_lexicon")
 
14
  values = list(scores.values())
15
  colors = ['red' if label == 'neg' else 'green' if label == 'pos' else 'white' for label in labels]
16
 
17
+ fig = go.Figure(go.Bar(
18
+ x=values,
19
+ y=labels,
20
+ orientation='h',
21
+ marker=dict(color=colors)
22
+ ))
23
 
24
+ fig.update_layout(
25
+ title="Sentiment Analysis",
26
+ xaxis_title="Score",
27
+ yaxis_title="Sentiment",
28
+ xaxis=dict(range=[0, 1]),
29
+ yaxis=dict(showgrid=True),
30
+ plot_bgcolor='rgba(0,0,0,0)',
31
+ paper_bgcolor='rgba(0,0,0,0)'
32
+ )
33
+
34
+ fig.update_xaxes(showgrid=True)
35
+ fig.update_yaxes(showgrid=True)
36
+
37
+ fig.write_image('sentiment_chart.png')
38
  return gr.Image('sentiment_chart.png')
39
 
40
  demo = gr.Interface(