Spaces:
Runtime error
Runtime error
Old-Fat-Boy
commited on
Commit
•
315fe62
1
Parent(s):
b2736ac
update app.py
Browse files
app.py
CHANGED
@@ -20,6 +20,6 @@ def classify_image(img):
|
|
20 |
# %% app.ipynb 9
|
21 |
image = gr.Image(shape=(192,192))
|
22 |
label = gr.Label()
|
23 |
-
examples = ['
|
24 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
25 |
intf.launch(inline=False)
|
|
|
20 |
# %% app.ipynb 9
|
21 |
image = gr.Image(shape=(192,192))
|
22 |
label = gr.Label()
|
23 |
+
examples = ['example.jpg', 'above_average.jpg', 'below_average.jpg']
|
24 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
25 |
intf.launch(inline=False)
|