tamdd18 commited on
Commit
fbba7c0
·
1 Parent(s): b0ed109

dog cat classify

Browse files
Files changed (3) hide show
  1. app.py +25 -4
  2. cat.png +0 -0
  3. dog.png +0 -0
app.py CHANGED
@@ -1,7 +1,28 @@
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
 
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
- demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- demo.launch()
 
1
+ # AUTOGENERATED! DO NOT EDIT! File to edit: app.ipynb.
2
+
3
+ # %% auto 0
4
+ __all__ = ['learn', 'categories', 'image', 'label', 'examples', 'intf', 'is_cat', 'classify_image']
5
+
6
+ # %% app.ipynb 1
7
+ from fastai.vision.all import *
8
+ import nbdev
9
  import gradio as gr
10
 
11
+ # %% app.ipynb 3
12
+ def is_cat(x): return x[0].isupper()
13
+ learn = load_learner('model.pkl')
14
+
15
+ # %% app.ipynb 5
16
+ categories = ('Dog', 'Cat')
17
+
18
+ def classify_image(img):
19
+ pred, idx, probs = learn.predict(img)
20
+ return dict(zip(categories, map(float, probs)))
21
+
22
+ # %% app.ipynb 7
23
+ image = gr.components.Image(height=192, width=192)
24
+ label = gr.components.Label()
25
+ examples = ['dog.png', 'cat.png']
26
 
27
+ intf = gr.Interface(fn=classify_image, inputs='image', outputs='label', examples=examples)
28
+ intf.launch()
cat.png ADDED
dog.png ADDED