Dotunnorth commited on
Commit
0014c28
·
1 Parent(s): c495efc

updated to latest gradio version

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,8 +15,8 @@ def classify_image(img):
15
  return dict(zip(categories, map(float, probs)))
16
 
17
 
18
- image = gr.inputs.Image(shape=(192,192))
19
- label = gr.outputs.Label()
20
  examples = ['black_bear.jpeg','grizzly_bear.jpeg', 'teddy_bear.jpeg']
21
 
22
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title="Bear Classifier")
 
15
  return dict(zip(categories, map(float, probs)))
16
 
17
 
18
+ image = gr.Image(shape=(192,192))
19
+ label = gr.Label()
20
  examples = ['black_bear.jpeg','grizzly_bear.jpeg', 'teddy_bear.jpeg']
21
 
22
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title="Bear Classifier")