Aylin Dursun commited on
Commit
9cecc3b
1 Parent(s): 0e45241

remove share true

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -23,6 +23,6 @@ def predict(img):
23
 
24
  title = "Cat Counter"
25
  description = "A model that counts cats"
26
- gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)), outputs="number", title=title, description=description).launch(share=True)
27
 
28
 
 
23
 
24
  title = "Cat Counter"
25
  description = "A model that counts cats"
26
+ gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)), outputs="number", title=title, description=description).launch(inline=False)
27
 
28