remove images examples
Browse files
app.py
CHANGED
@@ -19,10 +19,9 @@ def classify_image(img):
|
|
19 |
# %% gradio_model_app.ipynb 8
|
20 |
# image = gr.inputs.Image(shape=(192, 192))
|
21 |
# label = gr.outputs.Label()
|
22 |
-
examples = ['dog.jpg', 'cat.jpg', 'dunno.png']
|
23 |
|
24 |
inft = gr.Interface(fn=classify_image,
|
25 |
inputs=gr.Image(shape=(192, 192)),
|
26 |
-
outputs=gr.Label()
|
27 |
-
examples=examples)
|
28 |
inft.launch(inline=False)
|
|
|
19 |
# %% gradio_model_app.ipynb 8
|
20 |
# image = gr.inputs.Image(shape=(192, 192))
|
21 |
# label = gr.outputs.Label()
|
22 |
+
# examples = ['dog.jpg', 'cat.jpg', 'dunno.png']
|
23 |
|
24 |
inft = gr.Interface(fn=classify_image,
|
25 |
inputs=gr.Image(shape=(192, 192)),
|
26 |
+
outputs=gr.Label())
|
|
|
27 |
inft.launch(inline=False)
|