charlesouazana commited on
Commit
e7555ed
1 Parent(s): 2de0fd1
Files changed (4) hide show
  1. app.py +17 -10
  2. cat.jpg +0 -0
  3. dog.jpg +0 -0
  4. dunno.jpg +0 -0
app.py CHANGED
@@ -1,20 +1,27 @@
1
- import gradio as gr
 
 
 
 
2
  from fastai.vision.all import *
 
3
 
4
- __all__ = ['is_cat', 'learn', 'classify_image', 'categories', 'image', 'label', 'iface']
5
 
 
6
  learn = load_learner('model.pkl')
7
 
 
8
  categories = ('Dog', 'Cat')
9
 
10
- def is_cat(x : str):
11
- return x[0].isupper()
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.inputs.Image(shape = (192, 192))
 
18
  label = gr.outputs.Label()
19
- iface = gr.Interface(fn=classify_image, inputs=image, outputs=label)
20
- iface.launch(inline = False)
 
 
 
1
+ # AUTOGENERATED! DO NOT EDIT! File to edit: . (unless otherwise specified).
2
+
3
+ __all__ = ['is_cat', 'learn', 'classify_image', 'categories', 'image', 'label', 'examples', 'intf']
4
+
5
+ # Cell
6
  from fastai.vision.all import *
7
+ import gradio as gr
8
 
9
+ def is_cat(x): return x[0].isupper()
10
 
11
+ # Cell
12
  learn = load_learner('model.pkl')
13
 
14
+ # Cell
15
  categories = ('Dog', 'Cat')
16
 
 
 
 
17
  def classify_image(img):
18
+ pred,idx,probs = learn.predict(img)
19
+ return dict(zip(categories, map(float,probs)))
20
 
21
+ # Cell
22
+ image = gr.inputs.Image(shape=(192, 192))
23
  label = gr.outputs.Label()
24
+ examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
25
+
26
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
27
+ intf.launch(inline=False)
cat.jpg ADDED
dog.jpg ADDED
dunno.jpg ADDED