segadeds commited on
Commit
0e716c2
·
verified ·
1 Parent(s): b15cb3c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -22,8 +22,8 @@ def classify_image(img):
22
 
23
 
24
 
25
- image = gr.inputs.Image(shape=(192,192))
26
- label = gr.outputs.Label()
27
  examples = ['ednar.jpg', 'maggie.jpg', 'bart.jpg']
28
 
29
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
 
22
 
23
 
24
 
25
+ image = gr.Image(shape=(192,192))
26
+ label = gr.Label()
27
  examples = ['ednar.jpg', 'maggie.jpg', 'bart.jpg']
28
 
29
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)