Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
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)
|