Lisa Stuch commited on
Commit
52d1a8d
·
1 Parent(s): 8f7a03d

Add application file

Browse files
Files changed (1) hide show
  1. app.py +26 -4
app.py CHANGED
@@ -1,7 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
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
+ #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()
8
+
9
+ __all__ = ['is_cat', 'learn', 'classify_image', 'categories', 'image', 'label', 'examples', 'intf']
10
+
11
+ from fastai.vision.all import *
12
  import gradio as gr
13
 
14
+ def is_cat(x): return x[0].isupper()
15
+
16
+ learn = load_learner('model.pkl')
17
+
18
+ categories = ('Dog', 'Cat')
19
+
20
+ def classify_image(img):
21
+ pred,idx,probs = learn.predict(img)
22
+ return dict(zip(categories, map(float,probs)))
23
+
24
+ image = gr.inputs.Image(shape=(192, 192))
25
+ label = gr.outputs.Label()
26
+ examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
27
 
28
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
29
+ intf.launch(inline=False)