Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,12 +2,12 @@ from fastai.vision.all import *
|
|
| 2 |
import gradio as gr
|
| 3 |
|
| 4 |
learn = load_learner('model.pkl')
|
| 5 |
-
|
| 6 |
-
categories = ('grizzly bear', 'black bear', 'teddy bear')
|
| 7 |
|
| 8 |
def classify_image(img):
|
| 9 |
-
|
| 10 |
-
|
|
|
|
| 11 |
|
| 12 |
image = gr.inputs.Image(shape=(192,192))
|
| 13 |
label = gr.outputs.Label()
|
|
|
|
| 2 |
import gradio as gr
|
| 3 |
|
| 4 |
learn = load_learner('model.pkl')
|
| 5 |
+
labels = learn.dls.vocab
|
|
|
|
| 6 |
|
| 7 |
def classify_image(img):
|
| 8 |
+
img = PILImage.create(img)
|
| 9 |
+
pred,pred_idx,probs = learn.predict(img)
|
| 10 |
+
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
| 11 |
|
| 12 |
image = gr.inputs.Image(shape=(192,192))
|
| 13 |
label = gr.outputs.Label()
|