kataniccc commited on
Commit
2fd062e
1 Parent(s): 7a9d339

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -4
app.py CHANGED
@@ -1,7 +1,14 @@
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 import *
3
 
4
+ learner = load_learner('model.pkl')
 
5
 
6
+ def classify_image(img):
7
+ pred, idx, probs =learner.predict(img)
8
+ return dict(zip(learner.dls.vocab, map(float, probs)))
9
+
10
+ image = gr.Image();
11
+ label = gr.Label()
12
+
13
+ iface = gr.Interface(fn=classify_image, inputs=image, outputs=label)
14
+ iface.launch(inline=False)