Chibundum commited on
Commit
4ddba2b
·
1 Parent(s): c505ccc

Upload model pickle file and updated app.py

Browse files
Files changed (2) hide show
  1. app.py +16 -0
  2. model.pkl +3 -0
app.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from fastai.vision.all import *
2
+ import gradio as gr
3
+
4
+ learn = load_learner('model.pkl')
5
+
6
+ categories = learn.dls.vocab
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
+
15
+ iface = gr.Interface(fn=classify_image, inputs=image, outputs=label)
16
+ iface.launch()
model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11c72d06465d10943b1a951f1aa0b499a3caacf84d8555f202eff8f9c5e59c14
3
+ size 46967457