Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,14 @@
|
|
1 |
import gradio as gr
|
|
|
2 |
|
3 |
-
|
4 |
-
return "Hello " + name + "!!"
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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)
|