Jatayoo commited on
Commit
2e04060
1 Parent(s): b5ac75b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -14,5 +14,5 @@ image = gr.inputs.Image(shape=(192,192))
14
  label = gr.outputs.Label()
15
  examples = ['bee.jpg', 'wasp.jpg']
16
 
17
- intf = gr.Interface(fn=predict,inputs=image,outputs=label)
18
- intf.launch(inline=False)
 
14
  label = gr.outputs.Label()
15
  examples = ['bee.jpg', 'wasp.jpg']
16
 
17
+ intf = gr.Interface(fn=predict,inputs=image,outputs=label, examples=examples)
18
+ intf.launch(inline=False, share=True)