George Sergia commited on
Commit
aae26ba
·
1 Parent(s): 05c3454

Fix gradio code

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -10,8 +10,8 @@ def classify_bear(img):
10
  return dict(zip(categories, map(float,probs)))
11
 
12
 
13
- image = gr.inputs.Image(shape=(192,192))
14
- label = gr.outputs.Label()
15
  examples=["grizzly.jpg", "brown.jpg", "white.jpg", "black.jpg", "teddy.jpg"]
16
 
17
  iface = gr.Interface(fn=classify_bear, inputs=image, outputs=label, examples=examples)
 
10
  return dict(zip(categories, map(float,probs)))
11
 
12
 
13
+ image = gr.components.Image(shape=(192,192))
14
+ label = gr.components.Label()
15
  examples=["grizzly.jpg", "brown.jpg", "white.jpg", "black.jpg", "teddy.jpg"]
16
 
17
  iface = gr.Interface(fn=classify_bear, inputs=image, outputs=label, examples=examples)