Spaces:
Sleeping
Sleeping
Keith Preston commited on
Commit ·
18a2479
1
Parent(s): c5831c6
Remove examples
Browse files
app.py
CHANGED
|
@@ -13,5 +13,6 @@ image = gr.inputs.Image(shape=(244, 244))
|
|
| 13 |
label = gr.outputs.Label()
|
| 14 |
examples = ['dog1.jpg', 'dog2.jpg', 'dog3.jpg']
|
| 15 |
|
| 16 |
-
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
|
|
|
| 17 |
intf.launch(inline=False)
|
|
|
|
| 13 |
label = gr.outputs.Label()
|
| 14 |
examples = ['dog1.jpg', 'dog2.jpg', 'dog3.jpg']
|
| 15 |
|
| 16 |
+
#intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 17 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label)
|
| 18 |
intf.launch(inline=False)
|