runaksh commited on
Commit
dc675c1
·
1 Parent(s): 061df78

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -44,12 +44,12 @@ iface_1 = gradio.Interface(fn = predict_sentiment,
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
 
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