Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ def classify_image(img):
|
|
18 |
# Cell
|
19 |
image = gr.inputs.Image(shape=(192, 192))
|
20 |
label = gr.outputs.Label()
|
21 |
-
examples = ['basset.jpg']
|
22 |
|
23 |
# Cell
|
24 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
|
|
18 |
# Cell
|
19 |
image = gr.inputs.Image(shape=(192, 192))
|
20 |
label = gr.outputs.Label()
|
21 |
+
examples = ['basset.jpg', 'dunno.jpg']
|
22 |
|
23 |
# Cell
|
24 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|