Update app.py
Browse files
app.py
CHANGED
|
@@ -18,7 +18,7 @@ def classify_image(img):
|
|
| 18 |
# Cell
|
| 19 |
image = gr.inputs.Image(shape=(192, 192))
|
| 20 |
label = gr.outputs.Label()
|
| 21 |
-
examples = ['
|
| 22 |
|
| 23 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 24 |
intf.launch()
|
|
|
|
| 18 |
# Cell
|
| 19 |
image = gr.inputs.Image(shape=(192, 192))
|
| 20 |
label = gr.outputs.Label()
|
| 21 |
+
examples = ['perro.jpg', 'gato.jpg']
|
| 22 |
|
| 23 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 24 |
intf.launch()
|