Spaces:
Sleeping
Sleeping
michaela299 commited on
Commit ·
91a1dae
1
Parent(s): e79c75c
try to fix it
Browse files
app.py
CHANGED
|
@@ -42,8 +42,8 @@ with gr.Blocks(title="Plant Disease Classifier") as app:
|
|
| 42 |
image_input = gr.Image(type="pil", label="Upload Leaf Image")
|
| 43 |
label_output = gr.Label(label="Predicted Disease")
|
| 44 |
|
| 45 |
-
gr.Examples(
|
| 46 |
-
|
| 47 |
|
| 48 |
submit_btn = gr.Button("Submit")
|
| 49 |
submit_btn.click(fn=predict, inputs=image_input, outputs=label_output)
|
|
|
|
| 42 |
image_input = gr.Image(type="pil", label="Upload Leaf Image")
|
| 43 |
label_output = gr.Label(label="Predicted Disease")
|
| 44 |
|
| 45 |
+
#gr.Examples(
|
| 46 |
+
# examples =[], inputs=image_input)
|
| 47 |
|
| 48 |
submit_btn = gr.Button("Submit")
|
| 49 |
submit_btn.click(fn=predict, inputs=image_input, outputs=label_output)
|