Aharneish commited on
Commit
7706607
1 Parent(s): 72b2f0e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ categories=('Lilly','Lotus','Orchid','Sunflower','Tulip')
5
  def classify_image(img):
6
  pred,idx,probs=learn.predict(img)
7
  return dict(zip(categories,map(float,probs)))
8
- image=gr.inputs.Image(shape=192,192)
9
  label=gr.outputs.Label()
10
  examples=['lilly.jpg','lotus.jpg','orchid.jpg','sunflower.jpg','tulip.jpg']
11
 
 
5
  def classify_image(img):
6
  pred,idx,probs=learn.predict(img)
7
  return dict(zip(categories,map(float,probs)))
8
+ image=gr.inputs.Image(shape=(192,192))
9
  label=gr.outputs.Label()
10
  examples=['lilly.jpg','lotus.jpg','orchid.jpg','sunflower.jpg','tulip.jpg']
11