antoniorached commited on
Commit
3c2ea67
·
verified ·
1 Parent(s): 65b16f5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -4,8 +4,9 @@ import gradio as gr
4
  pipe = pipeline("sentiment-analysis")
5
 
6
  def get_sentiment(input):
7
- prediction = pipe(input)
8
- return f'{prediction[0].label} {prediction[0].score * 100}'
 
9
 
10
  demo = gr.Interface(
11
  fn=get_sentiment,
 
4
  pipe = pipeline("sentiment-analysis")
5
 
6
  def get_sentiment(input):
7
+ label = prediction[0]['label']
8
+ score = prediction[0]['score']
9
+ return f'{label} {score * 100:.2f}%'
10
 
11
  demo = gr.Interface(
12
  fn=get_sentiment,