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