tclopess commited on
Commit
e633a6b
Β·
verified Β·
1 Parent(s): 5df85de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -13,13 +13,12 @@ app_examples = [
13
  ]
14
 
15
  inputs = [
16
- gr.Textbox(label="Text", value=app_examples[0][0]),
17
-
18
  ]
19
 
20
  iface = gr.Interface(fn=get_sentiment,
21
  inputs=inputs,
22
- outputs="Text",
23
  title='Sentiment Analysis',
24
  description='Obtenha o sentimento do texto digitado πŸ˜„|😠',
25
  example= app_examples
 
13
  ]
14
 
15
  inputs = [
16
+ gr.Textbox(value=app_examples[0][0]),
 
17
  ]
18
 
19
  iface = gr.Interface(fn=get_sentiment,
20
  inputs=inputs,
21
+ outputs=["text"],
22
  title='Sentiment Analysis',
23
  description='Obtenha o sentimento do texto digitado πŸ˜„|😠',
24
  example= app_examples