Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -16,6 +16,8 @@ def classify_pet(img):
|
|
16 |
intf = gr.Interface(fn=classify_pet,
|
17 |
inputs=gr.Image(shape=(192, 192)),
|
18 |
outputs=gr.Label(),
|
|
|
|
|
19 |
examples=['dog.jpeg', 'cat.png', 'dog2.jpeg', 'dog03.jpeg', 'acat.jpg', 'not_sure.jpeg'])
|
20 |
intf.launch(inline=False)
|
21 |
|
|
|
16 |
intf = gr.Interface(fn=classify_pet,
|
17 |
inputs=gr.Image(shape=(192, 192)),
|
18 |
outputs=gr.Label(),
|
19 |
+
title="Cat or Dog?!",
|
20 |
+
description = 'Put in a picture of a cat or a dog, and this tiny deep learning model will tell you which it is. It is also to try it out on yourself or people you know! Are you REALLY a cat person or a dog person?!',
|
21 |
examples=['dog.jpeg', 'cat.png', 'dog2.jpeg', 'dog03.jpeg', 'acat.jpg', 'not_sure.jpeg'])
|
22 |
intf.launch(inline=False)
|
23 |
|