Rubén Escobedo
commited on
Commit
·
41223db
1
Parent(s):
847d47a
Update app.py
Browse files
app.py
CHANGED
@@ -14,4 +14,4 @@ def predict(text):
|
|
14 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
15 |
|
16 |
# Creamos la interfaz y la lanzamos.
|
17 |
-
gr.Interface(fn=predict, inputs=gr.inputs.Textbox(default = "I love this app to much!"), outputs = "
|
|
|
14 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
15 |
|
16 |
# Creamos la interfaz y la lanzamos.
|
17 |
+
gr.Interface(fn=predict, inputs=gr.inputs.Textbox(default = "I love this app to much!"), outputs = "text").launch() # outputs=gr.outputs.Label()).launch(share=False)
|