izeeek commited on
Commit
0cddc48
·
verified ·
1 Parent(s): a6f03cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -49,8 +49,8 @@ example_images = ["healthy.jpg", "unhealthy.jpg"]
49
  interface = gr.Interface(fn=predict,
50
  inputs="image",
51
  outputs=[gr.Textbox(label="Prediction"), gr.Textbox(label="Confidence")],
52
- title="Healthy vs Unhealthy Rice Plant Classifier",
53
- description="Upload a rice plant image to classify either it is healthy or unhealthy.",
54
  examples=example_images
55
  )
56
 
 
49
  interface = gr.Interface(fn=predict,
50
  inputs="image",
51
  outputs=[gr.Textbox(label="Prediction"), gr.Textbox(label="Confidence")],
52
+ title="Sheath Rot Disease Detection in Rice",
53
+ description="This AI-powered interface utilizes a Convolutional Neural Network (CNN) model to detect sheath rot disease in rice plants. By analyzing uploaded images of rice crops, the model classifies them as either healthy or infected with sheath rot disease. This tool aims to support farmers and agronomists in early disease detection, allowing for timely intervention and improved crop management. Simply upload a rice plant image to get an instant diagnosis and help safeguard your yield from disease-related losses.",
54
  examples=example_images
55
  )
56