Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -19,6 +19,7 @@ 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
|
|
|
|
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,
|
25 |
+
cache_examples=False).launch()
|