alex-abb commited on
Commit
b96ef93
1 Parent(s): e843947

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
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(num_top_
 
 
 
 
 
 
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()