Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -19,6 +19,6 @@ def predict(img):
|
|
19 |
return preds
|
20 |
|
21 |
gr.Interface(fn=predict,
|
22 |
-
inputs=gr.Image(type="numpy"),
|
23 |
outputs=gr.Label(num_top_classes=5),
|
24 |
examples=EXAMPLES).launch()
|
|
|
19 |
return preds
|
20 |
|
21 |
gr.Interface(fn=predict,
|
22 |
+
inputs=gr.Image(type="numpy", multiple=True),
|
23 |
outputs=gr.Label(num_top_classes=5),
|
24 |
examples=EXAMPLES).launch()
|