Spaces:
Runtime error
Runtime error
Corrected file name of example
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ def classify_image(img):
|
|
9 |
|
10 |
image = gr.inputs.Image(shape=(224,224))
|
11 |
label = gr.outputs.Label()
|
12 |
-
examples = ['emma_watson.
|
13 |
|
14 |
iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
15 |
iface.launch(inline=False)
|
|
|
9 |
|
10 |
image = gr.inputs.Image(shape=(224,224))
|
11 |
label = gr.outputs.Label()
|
12 |
+
examples = ['emma_watson.jpg', "tom_hanks.jpeg"]
|
13 |
|
14 |
iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
15 |
iface.launch(inline=False)
|