Juliofc commited on
Commit
f0b566e
1 Parent(s): fa98c90

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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
- 'data/test/cordana/1.jpeg',
50
- 'data/test/healthy/5.jpeg',
51
- 'data/test/pestalotiopsis/5.jpeg',
52
- 'data/test/sigatoka/1.jpeg'
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