Spaces:
Runtime error
Runtime error
update script
Browse files
app.py
CHANGED
|
@@ -23,7 +23,7 @@ def classify_image(img):
|
|
| 23 |
# %% dog_v_cat.ipynb 17
|
| 24 |
image = gr.inputs.Image(shape=(192,192))
|
| 25 |
label = gr.outputs.Label()
|
| 26 |
-
examples = ['
|
| 27 |
|
| 28 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 29 |
intf.launch(inline=False)
|
|
|
|
| 23 |
# %% dog_v_cat.ipynb 17
|
| 24 |
image = gr.inputs.Image(shape=(192,192))
|
| 25 |
label = gr.outputs.Label()
|
| 26 |
+
examples = ['dog.jpg','cat.jpg', 'challenge.jpg']
|
| 27 |
|
| 28 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 29 |
intf.launch(inline=False)
|