Spaces:
Runtime error
Runtime error
app.py
CHANGED
|
@@ -23,6 +23,6 @@ def classify_image(img):
|
|
| 23 |
# %% ../clasificacion_imagenes.ipynb 76
|
| 24 |
image = gr.inputs.Image(shape=(192, 192))
|
| 25 |
label = gr.outputs.Label()
|
| 26 |
-
examples = ['
|
| 27 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 28 |
intf.launch(inline=False, share=True, debug=True)
|
|
|
|
| 23 |
# %% ../clasificacion_imagenes.ipynb 76
|
| 24 |
image = gr.inputs.Image(shape=(192, 192))
|
| 25 |
label = gr.outputs.Label()
|
| 26 |
+
examples = ['grizzly.jpg', 'black.jpg', 'teddy.jpg']
|
| 27 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 28 |
intf.launch(inline=False, share=True, debug=True)
|