Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -17,5 +17,5 @@ image = gr.inputs.Image(shape=(192, 192))
|
|
| 17 |
label = gr.outputs.Label()
|
| 18 |
examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
|
| 19 |
|
| 20 |
-
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=[]
|
| 21 |
intf.launch(inline=False)
|
|
|
|
| 17 |
label = gr.outputs.Label()
|
| 18 |
examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
|
| 19 |
|
| 20 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=[])
|
| 21 |
intf.launch(inline=False)
|