Spaces:
Sleeping
Sleeping
neerajprad
commited on
Commit
·
99c4e70
1
Parent(s):
eb39a69
Colab update - fix classify
Browse files
app.py
CHANGED
@@ -23,6 +23,7 @@ interface = gr.Interface(
|
|
23 |
title="Leaf Spot Classifier",
|
24 |
description="Classify the leaf into one of: angular_leaf_spot, bean_rust, healthy",
|
25 |
examples="examples",
|
|
|
26 |
fn=classify,
|
27 |
inputs=gr.Image(shape=(224, 224)),
|
28 |
outputs=gr.Label(num_top_classes=3),
|
|
|
23 |
title="Leaf Spot Classifier",
|
24 |
description="Classify the leaf into one of: angular_leaf_spot, bean_rust, healthy",
|
25 |
examples="examples",
|
26 |
+
cache_examples=False,
|
27 |
fn=classify,
|
28 |
inputs=gr.Image(shape=(224, 224)),
|
29 |
outputs=gr.Label(num_top_classes=3),
|