Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,11 +7,23 @@ pipe = pipeline('sentiment-analysis')
|
|
| 7 |
def get_sentiment(input_text):
|
| 8 |
return pipe(input_text)
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
iface = gr.Interface(fn=get_sentiment,
|
| 11 |
-
inputs=
|
| 12 |
outputs=['text'],
|
| 13 |
title='Sentiment Analysis',
|
| 14 |
-
description='Obtenha o sentimento do texto digitado 😄|😠'
|
|
|
|
| 15 |
)
|
| 16 |
|
| 17 |
iface.launch(inline=False)
|
|
|
|
| 7 |
def get_sentiment(input_text):
|
| 8 |
return pipe(input_text)
|
| 9 |
|
| 10 |
+
app_examples = [
|
| 11 |
+
['Não estou em minha melhor versão'],
|
| 12 |
+
['Nada mais satisfatorio como chegar em casa e relaxar']
|
| 13 |
+
]
|
| 14 |
+
|
| 15 |
+
inputs = [
|
| 16 |
+
gr.Textbox(label="Text", value=app_examples[0][0]),
|
| 17 |
+
|
| 18 |
+
]
|
| 19 |
+
|
| 20 |
+
|
| 21 |
iface = gr.Interface(fn=get_sentiment,
|
| 22 |
+
inputs=inputs,
|
| 23 |
outputs=['text'],
|
| 24 |
title='Sentiment Analysis',
|
| 25 |
+
description='Obtenha o sentimento do texto digitado 😄|😠',
|
| 26 |
+
example= app_examples
|
| 27 |
)
|
| 28 |
|
| 29 |
iface.launch(inline=False)
|