h0ver commited on
Commit
316b03c
·
1 Parent(s): 0789a2f

Add model, exmaples, intf

Browse files
Files changed (5) hide show
  1. app.py +14 -4
  2. cat.jpg +0 -0
  3. catornot_model.pkl +3 -0
  4. dog.jpg +0 -0
  5. dunno.jpg +0 -0
app.py CHANGED
@@ -1,7 +1,17 @@
 
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
+ from fastai.vision.all import *
2
  import gradio as gr
3
 
4
+ learn = load_learner('catornot_model.pkl')
 
5
 
6
+ categories = ('Dog', 'Cat')
7
+
8
+ def classify_image(img):
9
+ pred, idx, probs = learn.predict(img)
10
+ return dict(zip(categories, map(float, probs)))
11
+
12
+ image = gr.inputs.Image(shape=(192, 192))
13
+ label = gr.outputs.Label()
14
+ examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
15
+
16
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
17
+ intf.launch(inline=False)
cat.jpg ADDED
catornot_model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68f5156011456981f0a18e882e6620a14774c82fcdbf7be0a0d419cc07084ca9
3
+ size 47061419
dog.jpg ADDED
dunno.jpg ADDED