curtpond commited on
Commit
c71ee2b
1 Parent(s): 17ac362

Updated app.py with demo launch info.

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -19,7 +19,9 @@ iface = gr.Interface(fn=predict,
19
  examples=[
20
  'This is a text about healthcare', 'This is a text about technology', 'This is a text about other'],
21
  allow_flagging='never'
22
- )
 
 
23
 
24
 
25
 
 
19
  examples=[
20
  'This is a text about healthcare', 'This is a text about technology', 'This is a text about other'],
21
  allow_flagging='never'
22
+ )
23
+
24
+ demo = iface.launch(share=True)
25
 
26
 
27