Cameron Tait commited on
Commit
9d477bb
1 Parent(s): 778957a

Add ML model and example images

Browse files
Files changed (3) hide show
  1. app.py +21 -4
  2. examples/crow.jpg +0 -0
  3. examples/raven.jpg +0 -0
app.py CHANGED
@@ -1,7 +1,24 @@
 
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
+ def label_func(x):
5
+ if "Raven" in x.parent.name:
6
+ return "raven"
7
+ else:
8
+ return "crow"
9
 
10
+ categories = ("raven", "crow")
11
+
12
+ def classify_image(img):
13
+ pred, idx, probs = learn.predict(img)
14
+ return dict(zip(categories, map(float,probs)))
15
+
16
+ learn = load_learner("model.pkl")
17
+
18
+ image = gr.inputs.Image(shape=(400, 400))
19
+ label = gr.outputs.Label()
20
+
21
+ examples = ["examples/crow.jpg", "examples/raven.jpg"]
22
+
23
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
24
+ intf.launch(inline=False)
examples/crow.jpg ADDED
examples/raven.jpg ADDED