danieladejumo commited on
Commit
3a0a734
1 Parent(s): bccd5fd

Updated app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ def classify_images(im):
8
  cat, idx, probs = learn.predict(im)
9
  return dict(zip(classes, map(float, probs)))
10
 
11
- image = gr.Image(height=192, width=192)
12
  label = gr.Label()
13
  examples = ["forest.jpg", "bird.jpg"]
14
 
 
8
  cat, idx, probs = learn.predict(im)
9
  return dict(zip(classes, map(float, probs)))
10
 
11
+ image = gr.Image()
12
  label = gr.Label()
13
  examples = ["forest.jpg", "bird.jpg"]
14