AmrElsayeh commited on
Commit
e04fab3
1 Parent(s): 91cdf11

adding application file

Browse files
Files changed (1) hide show
  1. app.py +22 -0
app.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from fastai.vision.all import *
2
+ import gradio as gr
3
+
4
+ def is_pistol(x): return x[0].isupper()
5
+
6
+ # Cell
7
+ learn = load_learner('model.pkl')
8
+
9
+ # Cell
10
+ categories = ('pistol', 'Revolvers','Rifles','Shotguns')
11
+
12
+ def classify_image(img):
13
+ pred,idx,probs = learn.predict(img)
14
+ return dict(zip(categories, map(float,probs)))
15
+
16
+ # Cell
17
+ image = gr.inputs.Image(shape=(192, 192))
18
+ label = gr.outputs.Label()
19
+ examples = ['pistol.jpg', 'Revolvers.jpg', 'Rifles.jpg','Shotguns.jpg']
20
+
21
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
22
+ intf.launch(inline=False)