dr4g0n7ly commited on
Commit
f7cb967
·
1 Parent(s): 00dda8d
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,5 +10,5 @@ def classify_img(img):
10
  image = gr.inputs.Image(shape=(192, 192))
11
  label = gr.outputs.Label()
12
 
13
- intf = gr.Interface(fn=[classify_img, classify_img], inputs=[image, image], outputs=[label, label])
14
  intf.launch(inline=False)
 
10
  image = gr.inputs.Image(shape=(192, 192))
11
  label = gr.outputs.Label()
12
 
13
+ intf = gr.Interface(fn=classify_img, inputs=image, outputs=label)
14
  intf.launch(inline=False)