Sa-m commited on
Commit
20657bd
·
1 Parent(s): 21e5484

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -64,7 +64,7 @@ def classify_image(inp):
64
  image = gr.inputs.Image(shape=(IMG_SIZE, IMG_SIZE))
65
  label = gr.outputs.Label(num_top_classes=2)
66
 
67
- gr.Interface(fn=classify_image, inputs=image, outputs=label, title='Cats Vs Dogs',height=600, width=1200,examples=ex).launch()
68
 
69
 
70
 
 
64
  image = gr.inputs.Image(shape=(IMG_SIZE, IMG_SIZE))
65
  label = gr.outputs.Label(num_top_classes=2)
66
 
67
+ gr.Interface(fn=classify_image, inputs=image, outputs=label, title='Cats Vs Dogs',height=600, width=1200,examples=ex).launch(share=True)
68
 
69
 
70