mahderf commited on
Commit
c09dd7c
·
1 Parent(s): 6d66a10

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,7 +6,7 @@ learn = load_learner('export.pkl')
6
 
7
  labels = learn.dls.vocab
8
  def predict(img):
9
- img = PILImage.create(img)
10
  pred,pred_idx,probs = learn.predict(img)
11
  return {labels[i]: float(probs[i]) for i in range(len(labels))}
12
 
@@ -16,4 +16,4 @@ examples = ['Nastaligh_example.jpg']
16
  interpretation='default'
17
  enable_queue=True
18
 
19
- gr.Interface(fn=predict,inputs=gr.inputs.Image(shape=(512, 512)),outputs=gr.outputs.Label(num_top_classes=3),title=title,description=description,article=article,examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch()
 
6
 
7
  labels = learn.dls.vocab
8
  def predict(img):
9
+ #img = PILImage.create(img)
10
  pred,pred_idx,probs = learn.predict(img)
11
  return {labels[i]: float(probs[i]) for i in range(len(labels))}
12
 
 
16
  interpretation='default'
17
  enable_queue=True
18
 
19
+ gr.Interface(fn=predict,inputs=gr.inputs.Image(shape=(192, 192)),outputs=gr.outputs.Label(),title=title,description=description,article=article,examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch()