antoniorached commited on
Commit
7b64d8b
·
verified ·
1 Parent(s): 3c2ea67

Update app.py

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