lmyrick29 commited on
Commit
8370156
1 Parent(s): 7ad0883

Update app.py

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