lopesdri commited on
Commit
d36ea61
·
1 Parent(s): fcd30e9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -30,7 +30,6 @@ def detect(img):
30
  # show detection bounding boxes on image
31
 
32
  img = gr.inputs.Image(shape=(192, 192))
33
- image = gr.outputs.Image()
34
 
35
- intf = gr.Interface(fn=detect, inputs=img, outputs=image)
36
  intf.launch(inline=False)
 
30
  # show detection bounding boxes on image
31
 
32
  img = gr.inputs.Image(shape=(192, 192))
 
33
 
34
+ intf = gr.Interface(fn=detect, inputs=img, outputs='image')
35
  intf.launch(inline=False)