Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ def classify_img(img):
|
|
10 |
preds, idx, probs = learn.predict(img)
|
11 |
return dict(zip(categories, map(float, probs)))
|
12 |
|
13 |
-
image = gr.Image(
|
14 |
label = gr.Label()
|
15 |
examples = ['ben-tiger.jpg', 'sib-tiger.jpg']
|
16 |
|
|
|
10 |
preds, idx, probs = learn.predict(img)
|
11 |
return dict(zip(categories, map(float, probs)))
|
12 |
|
13 |
+
image = gr.Image()
|
14 |
label = gr.Label()
|
15 |
examples = ['ben-tiger.jpg', 'sib-tiger.jpg']
|
16 |
|