asquirous commited on
Commit
95253cb
·
1 Parent(s): 2f8cad0

Edit return value of classify_image in app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,12 +2,12 @@ from fastai.vision.all import *
2
  import gradio as gr
3
 
4
  learn = load_learner("model_bikes.pkl")
5
-
6
  labels = learn.dls.vocab
7
 
8
  def classify_image(img):
 
9
  pred, idx, probs = learn.predict(img)
10
- return dict(zip(categories, map(float, probs)))
11
 
12
  image = gr.inputs.Image(shape=(224, 224))
13
  label = gr.outputs.Label()
 
2
  import gradio as gr
3
 
4
  learn = load_learner("model_bikes.pkl")
 
5
  labels = learn.dls.vocab
6
 
7
  def classify_image(img):
8
+ img = PILImage.create(img)
9
  pred, idx, probs = learn.predict(img)
10
+ return dict(zip(labels, map(float, probs)))
11
 
12
  image = gr.inputs.Image(shape=(224, 224))
13
  label = gr.outputs.Label()