Update app.py
Browse files
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=(
|
|
|
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()
|