iamacaru commited on
Commit
a37b4d4
·
verified ·
1 Parent(s): 4652d15

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -31,4 +31,4 @@ examples = [
31
  ]
32
 
33
  # Creamos la interfaz y la lanzamos.
34
- gr.Interface(fn=predict, inputs=gr.inputs.Textbox(lines=1, placeholder="Enter text here..."), outputs=gr.Textbox(), examples=examples).launch(share=False)
 
31
  ]
32
 
33
  # Creamos la interfaz y la lanzamos.
34
+ gr.Interface(fn=predict, inputs=gr.inputs.Textbox(lines=1, placeholder="Enter text here...", label="Text to predict"), outputs=gr.Textbox(label="Prediction"), examples=examples).launch(share=False)