Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -44,6 +44,12 @@ iface_1 = gradio.Interface(fn = predict_sentiment,
|
|
44 |
title = title_1,
|
45 |
description = description_1)
|
46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
iface_1.launch(debug = True)
|
48 |
|
49 |
#iface.launch(debug = True)#, server_name = "0.0.0.0", server_port = 8001) # Ref. for parameters: https://www.gradio.app/docs/interface
|
|
|
44 |
title = title_1,
|
45 |
description = description_1)
|
46 |
|
47 |
+
iface = gradio.Interface(
|
48 |
+
iface_1,
|
49 |
+
title="Multiple Models Interface",
|
50 |
+
description="This interface showcases multiple models"
|
51 |
+
)
|
52 |
+
|
53 |
iface_1.launch(debug = True)
|
54 |
|
55 |
#iface.launch(debug = True)#, server_name = "0.0.0.0", server_port = 8001) # Ref. for parameters: https://www.gradio.app/docs/interface
|