AItool commited on
Commit
4712590
·
verified ·
1 Parent(s): 640f09e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -31,5 +31,6 @@ image = gr.inputs.Image(shape=(192,192))
31
  label = gr.outputs.Label()
32
  examples = ['virtual.jpg','real.jpg']
33
 
34
- intf = gr.Interface(fn=classify_image,inputs=image,outputs=label,examples=examples)
35
- intf.launch(inline=False)
 
 
31
  label = gr.outputs.Label()
32
  examples = ['virtual.jpg','real.jpg']
33
 
34
+ # Cell
35
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples,share=True)
36
+ intf.launch()