Spaces:
Runtime error
Runtime error
updated examples
Browse files
app.py
CHANGED
@@ -16,8 +16,8 @@ def classify_image(img):
|
|
16 |
|
17 |
image = gr.inputs.Image(shape=(192, 192))
|
18 |
label = gr.outputs.Label()
|
19 |
-
examples = ['
|
20 |
-
'
|
21 |
|
22 |
intf = gr.Interface(fn=classify_image, inputs=image,
|
23 |
outputs=label, examples=examples)
|
|
|
16 |
|
17 |
image = gr.inputs.Image(shape=(192, 192))
|
18 |
label = gr.outputs.Label()
|
19 |
+
examples = ['example1.jpg', 'example2.jpg',
|
20 |
+
'example3.jpg', 'example4.jpg', 'example5.jpg']
|
21 |
|
22 |
intf = gr.Interface(fn=classify_image, inputs=image,
|
23 |
outputs=label, examples=examples)
|