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