feat: add sneaky example
Browse files- app.py +1 -1
- dunno2.jpg +0 -0
app.py
CHANGED
@@ -22,7 +22,7 @@ def classify_image(img):
|
|
22 |
# %% dogvscat.ipynb 7
|
23 |
image = gr.inputs.Image(shape=(192,192))
|
24 |
label = gr.outputs.Label()
|
25 |
-
examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
|
26 |
|
27 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title='Dog vs cat?')
|
28 |
intf.launch(inline=False)
|
|
|
22 |
# %% dogvscat.ipynb 7
|
23 |
image = gr.inputs.Image(shape=(192,192))
|
24 |
label = gr.outputs.Label()
|
25 |
+
examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg', 'dunno2.jpg']
|
26 |
|
27 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title='Dog vs cat?')
|
28 |
intf.launch(inline=False)
|
dunno2.jpg
ADDED