Update app.py
Browse files
app.py
CHANGED
@@ -10,5 +10,5 @@ def predict(text):
|
|
10 |
prediction4 = "\nModel 4 " + str(classifier4(text))
|
11 |
return prediction3 + prediction4
|
12 |
|
13 |
-
|
14 |
-
|
|
|
10 |
prediction4 = "\nModel 4 " + str(classifier4(text))
|
11 |
return prediction3 + prediction4
|
12 |
|
13 |
+
ifg = gr.Interface(fn=predict, inputs=[gr.Textbox(placeholder='Escribe aquí...')], outputs="text")
|
14 |
+
ifg.launch(share=True)
|