Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -44,12 +44,12 @@ iface_1 = gradio.Interface(fn = predict_sentiment,
|
|
44 |
title = title_1,
|
45 |
description = description_1)
|
46 |
|
47 |
-
|
48 |
iface_1,
|
49 |
title="Multiple Models Interface",
|
50 |
description="This interface showcases multiple models"
|
51 |
)
|
52 |
|
53 |
-
|
54 |
|
55 |
#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 |
+
combined_interface = gradio.Interface(
|
48 |
iface_1,
|
49 |
title="Multiple Models Interface",
|
50 |
description="This interface showcases multiple models"
|
51 |
)
|
52 |
|
53 |
+
combined_interface.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
|