lopesdri commited on
Commit
7a971c1
·
1 Parent(s): 339d133

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -33,7 +33,6 @@ def detect(img):
33
 
34
  image = gr.inputs.Image(shape=(192, 192))
35
  label = gr.outputs.Label()
36
- examples = ['dog.jpg']
37
 
38
- intf = gr.Interface(fn=detect, inputs=image, outputs=image, examples=examples)
39
  intf.launch(inline=False)
 
33
 
34
  image = gr.inputs.Image(shape=(192, 192))
35
  label = gr.outputs.Label()
 
36
 
37
+ intf = gr.Interface(fn=detect, inputs=image, outputs=image)
38
  intf.launch(inline=False)