jk
commited on
Commit
·
45e0191
1
Parent(s):
508c6fe
updated app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ def classify_image(img):
|
|
23 |
# %% model-pkl-run.ipynb 8
|
24 |
image = gr.Image(width=192, height=192)
|
25 |
label = gr.Label()
|
26 |
-
examples = ['dog.png', 'cat.
|
27 |
|
28 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
29 |
intf.launch(inline=False, share=True)
|
|
|
23 |
# %% model-pkl-run.ipynb 8
|
24 |
image = gr.Image(width=192, height=192)
|
25 |
label = gr.Label()
|
26 |
+
examples = ['dog.png', 'cat.png', 'dunno.png']
|
27 |
|
28 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
29 |
intf.launch(inline=False, share=True)
|