Spaces:
Runtime error
Runtime error
Tried to change to non-deprecated functions
Browse files
app.py
CHANGED
|
@@ -16,8 +16,8 @@ def classify_image(img):
|
|
| 16 |
pred, idx, probs = learn.predict(img)
|
| 17 |
return dict(zip(categories, map(float, probs)))
|
| 18 |
|
| 19 |
-
image = gr.
|
| 20 |
-
label = gr.
|
| 21 |
|
| 22 |
examples = ['dog.jpg', 'cat.jpg']
|
| 23 |
|
|
|
|
| 16 |
pred, idx, probs = learn.predict(img)
|
| 17 |
return dict(zip(categories, map(float, probs)))
|
| 18 |
|
| 19 |
+
image = gr.Image(shape=(192, 192))
|
| 20 |
+
label = gr.Label()
|
| 21 |
|
| 22 |
examples = ['dog.jpg', 'cat.jpg']
|
| 23 |
|