Update app.py
Browse files
app.py
CHANGED
@@ -46,10 +46,10 @@ def predict_image(image):
|
|
46 |
iface = gr.Interface(fn=predict_image, inputs="image", outputs="label",
|
47 |
description="This model is a fine-tuned version of AlexNet specifically designed to identify four types of diseases in banana tree leaves. It can classify the leaves as Cordana, Healthy, Pestalotiopsis, or Sigatoka. Upload a photo of a banana leaf and the model will help you determine its health condition.",
|
48 |
examples=[
|
49 |
-
'
|
50 |
-
'
|
51 |
-
'
|
52 |
-
'
|
53 |
]
|
54 |
)
|
55 |
|
|
|
46 |
iface = gr.Interface(fn=predict_image, inputs="image", outputs="label",
|
47 |
description="This model is a fine-tuned version of AlexNet specifically designed to identify four types of diseases in banana tree leaves. It can classify the leaves as Cordana, Healthy, Pestalotiopsis, or Sigatoka. Upload a photo of a banana leaf and the model will help you determine its health condition.",
|
48 |
examples=[
|
49 |
+
'cordana.jpeg',
|
50 |
+
'healthy.jpeg',
|
51 |
+
'pestalotiopsis.jpeg',
|
52 |
+
'sigatoka.jpeg'
|
53 |
]
|
54 |
)
|
55 |
|