stagoverflow commited on
Commit
b84ac46
·
1 Parent(s): 812d50b

Initial gradio commit

Browse files
Files changed (1) hide show
  1. app.py +19 -0
app.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from fastai.vision.all import *
3
+
4
+ learn = load_learner('model.pkl')
5
+
6
+ categories = ('F1', 'indy')
7
+
8
+ def classify_image(img):
9
+ _,_,probs = learn.predict(img)
10
+ return dict(zip(categories, map(float, probs)))
11
+
12
+
13
+ image = gr.inputs.Image(shape=(192, 192))
14
+ label = gr.outputs.Label()
15
+ examples = ['F1.JPG', 'indy.jpg', 'rally.jpg']
16
+
17
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
18
+ intf.launch(i:q!
19
+ :qnline=False)