tclopess commited on
Commit
b879baa
·
verified ·
1 Parent(s): cde25ed

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,9 +9,9 @@ def get_sentiment(input_text):
9
 
10
  iface = gr.Interface(fn=get_sentiment,
11
  inputs='text',
12
- outputs='text',
13
  title='Sentiment Analysis',
14
- description='Obtenha o sentimento do texto de entrada:'
15
  )
16
 
17
  iface.launch(inline=False)
 
9
 
10
  iface = gr.Interface(fn=get_sentiment,
11
  inputs='text',
12
+ outputs=['text'],
13
  title='Sentiment Analysis',
14
+ description='Obtenha o sentimento do texto digitado'
15
  )
16
 
17
  iface.launch(inline=False)