segadeds commited on
Commit
9bc7a40
·
verified ·
1 Parent(s): 042e27a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -17,8 +17,8 @@ def classify_image(img):
17
 
18
 
19
 
20
- image = gr.inputs.Image(shape=(192,192))
21
- label = gr.outputs.Label()
22
  examples = ['laughing.jpg', 'dancing.jpg', 'drinking.jpg']
23
 
24
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
 
17
 
18
 
19
 
20
+ image = gr.Image(shape=(192,192))
21
+ label = gr.Label()
22
  examples = ['laughing.jpg', 'dancing.jpg', 'drinking.jpg']
23
 
24
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)