Spaces:
Runtime error
Runtime error
Commit
·
13f8932
1
Parent(s):
ea4dfb9
adjusted app to use new example data
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ def classify_image(img):
|
|
11 |
|
12 |
image = gr.inputs.Image(shape=(192, 192))
|
13 |
label = gr.outputs.Label()
|
14 |
-
examples = ['
|
15 |
|
16 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
17 |
intf.launch(inline=False)
|
|
|
11 |
|
12 |
image = gr.inputs.Image(shape=(192, 192))
|
13 |
label = gr.outputs.Label()
|
14 |
+
examples = ['0002.png', '201706161606-0002.png', '201706161906-0001.png']
|
15 |
|
16 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
17 |
intf.launch(inline=False)
|