add example to interface
Browse files
app.py
CHANGED
@@ -18,5 +18,5 @@ intf = gr.Interface(
|
|
18 |
fn=classify_image,
|
19 |
inputs=gr.Image(shape=(192, 192)),
|
20 |
outputs=gr.Label(),
|
21 |
-
|
22 |
intf.launch(inline=False)
|
|
|
18 |
fn=classify_image,
|
19 |
inputs=gr.Image(shape=(192, 192)),
|
20 |
outputs=gr.Label(),
|
21 |
+
examples=examples)
|
22 |
intf.launch(inline=False)
|