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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
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