cetusian commited on
Commit
9058cf1
1 Parent(s): 08aefb4

Upload 4 files

Browse files
Files changed (4) hide show
  1. app.py +19 -0
  2. black-bear.jpg +0 -0
  3. grizzly-bear.jpg +0 -0
  4. model.pkl +3 -0
app.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ __all__ = ['learn', 'classify_image', 'categories', 'image', 'label', 'examples', 'intf' ]
2
+
3
+ from fastai.vision.all import *
4
+ import gradio as gr
5
+
6
+ learn = load_learner('model.pkl')
7
+
8
+ categories = ('black', 'grizzly', 'koala')
9
+
10
+ def classify_image(img):
11
+ pred, idx, probs = learn.predict(img)
12
+ return dict(zip(categories, map(float, probs)))
13
+
14
+ image = gr.inputs.Image(shape=(192, 192))
15
+ label = gr.outputs.Label()
16
+ examples = ['black-bear.jpg', 'grizzly-bear.jpg']
17
+
18
+ intf = gr.Interface(fn = classify_image, inputs = image, outputs = label, examples = examples)
19
+ intf.launch(inline = False)
black-bear.jpg ADDED
grizzly-bear.jpg ADDED
model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86dca289cac268ce79db0151af2ec4b47806407c13d6d2bbe953e389da2ce3d3
3
+ size 46961213