kkk0123k commited on
Commit
a665af8
·
verified ·
1 Parent(s): 27736a0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -7
app.py CHANGED
@@ -6,19 +6,16 @@ import gradio as gr
6
 
7
  def is_cat(x): return x[0].isupper()
8
 
9
- # Cell
10
  learn = load_learner('model.pkl')
11
 
12
- # Cell
13
  categories = ('Dog', 'Cat')
14
 
15
  def classify_image(img):
16
- pred,idx,probs = learn.predict(img)
17
- return dict(zip(categories, map(float,probs)))
18
 
19
- # Cell
20
- image = gr.inputs.Image(shape=(192, 192))
21
- label = gr.outputs.Label()
22
  examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
23
 
24
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
 
6
 
7
  def is_cat(x): return x[0].isupper()
8
 
 
9
  learn = load_learner('model.pkl')
10
 
 
11
  categories = ('Dog', 'Cat')
12
 
13
  def classify_image(img):
14
+ pred, idx, probs = learn.predict(img)
15
+ return dict(zip(categories, map(float, probs)))
16
 
17
+ image = gr.Image(shape=(192, 192))
18
+ label = gr.Label()
 
19
  examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
20
 
21
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)