John Yan
commited on
Commit
·
3ff65bc
1
Parent(s):
62fa1e2
cat 2, whoops
Browse files
app.py
CHANGED
@@ -17,6 +17,6 @@ def classify_image(img):
|
|
17 |
|
18 |
image = gr.inputs.Image(shape=(192,192))
|
19 |
label = gr.outputs.Label()
|
20 |
-
examples = ['dog.png', 'cat.png', 'dunno.png']
|
21 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
22 |
intf.launch()
|
|
|
17 |
|
18 |
image = gr.inputs.Image(shape=(192,192))
|
19 |
label = gr.outputs.Label()
|
20 |
+
examples = ['dog.png', 'cat.png', 'cat2.png', 'dunno.png']
|
21 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
22 |
intf.launch()
|