Spaces:
Sleeping
Sleeping
Commit
·
7befa4c
1
Parent(s):
fccc91a
Update app.py
Browse files
app.py
CHANGED
|
@@ -15,7 +15,7 @@ def classify_image(img):
|
|
| 15 |
image = gr.inputs.Image(shape=(192,192))
|
| 16 |
label = gr.outputs.Label()
|
| 17 |
|
| 18 |
-
examples = ['cat.jpeg', 'dog.jpeg', '
|
| 19 |
|
| 20 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 21 |
intf.launch(inline=False)
|
|
|
|
| 15 |
image = gr.inputs.Image(shape=(192,192))
|
| 16 |
label = gr.outputs.Label()
|
| 17 |
|
| 18 |
+
examples = ['cat.jpeg', 'dog.jpeg', 'othercat.jpeg']
|
| 19 |
|
| 20 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 21 |
intf.launch(inline=False)
|