Ridealist commited on
Commit
1c49368
·
1 Parent(s): 686e777

Add predict func and inference chain

Browse files
Files changed (1) hide show
  1. app.py +13 -3
app.py CHANGED
@@ -1,7 +1,17 @@
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
 
3
+ from fastai.learner import load_learner
4
+ from fastai.vision.all import PILImage
5
 
6
+
7
+ learn = load_learner('model/export.pkl')
8
+
9
+ labels = learn.dls.vocab
10
+
11
+ def predict(img):
12
+ img = PILImage.create(img)
13
+ pred,pred_idx,probs = learn.predict(img)
14
+ return {labels[i]: float(probs[i]) for i in range(len(labels))}
15
+
16
+ iface = gr.Interface(fn=predict, inputs=gr.Image(shape=(512, 512)), outputs=gr.Label(num_top_classes=3)).launch(share=True)
17
  iface.launch()