dyuchus commited on
Commit
8b8eefa
1 Parent(s): 790cd9a

gradio interface for dog-cat classifier

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