Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -34,4 +34,9 @@ def gradio_interface(input_text):
|
|
34 |
iface = gr.Interface(
|
35 |
fn=gradio_interface,
|
36 |
inputs=gr.Textbox(lines=3, placeholder="Entrez votre texte ici..."),
|
37 |
-
outputs=gr.Label(
|
|
|
|
|
|
|
|
|
|
|
|
34 |
iface = gr.Interface(
|
35 |
fn=gradio_interface,
|
36 |
inputs=gr.Textbox(lines=3, placeholder="Entrez votre texte ici..."),
|
37 |
+
outputs=gr.Label(num_top_classes=1),
|
38 |
+
title="Analyseur de Sentiment",
|
39 |
+
description="Entrez un texte pour déterminer si le sentiment est 'heureux' ou 'malheureux'."
|
40 |
+
)
|
41 |
+
|
42 |
+
iface.launch()
|