Yihan Zhou commited on
Commit
eb11d13
1 Parent(s): cc0f424

fix sharing gradio issue

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,4 +9,4 @@ def predict(img):
9
 
10
  import gradio as gr
11
 
12
- gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)), outputs=gr.outputs.Label(num_top_classes=3)).launch(share=True)
 
9
 
10
  import gradio as gr
11
 
12
+ gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)), outputs=gr.outputs.Label(num_top_classes=3)).launch(inline=False)