Add cat image
Browse files
app.py
CHANGED
|
@@ -13,7 +13,7 @@ def classify_image(img):
|
|
| 13 |
return dict(zip(categories, map(float, probs)))
|
| 14 |
|
| 15 |
|
| 16 |
-
examples = ['dog.jpeg']
|
| 17 |
intf = gr.Interface(
|
| 18 |
fn=classify_image,
|
| 19 |
inputs=gr.Image(shape=(192, 192)),
|
|
|
|
| 13 |
return dict(zip(categories, map(float, probs)))
|
| 14 |
|
| 15 |
|
| 16 |
+
examples = ['dog.jpeg', 'cat.jpeg']
|
| 17 |
intf = gr.Interface(
|
| 18 |
fn=classify_image,
|
| 19 |
inputs=gr.Image(shape=(192, 192)),
|
cat.jpeg
ADDED
|