kanthadya commited on
Commit
20655e2
1 Parent(s): a628af7

classifier

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