CoolFace
Apppublic

Shru/Rice_Disease_Classifier

sourceHugging Facegpl-3.0updated 2y agoView on Hugging Face
0likes
streamlit_app.py42 linesDownload Raw Back to root
1import streamlit as st2 3st.set_page_config(4    page_title="Rice Disease Classifier 🌾",5    page_icon="πŸ‘‹",6)7 8st.title("Rice Disease Classification App 🍚")9st.write("*Project by Omdena Laguna, Philippines Chapter*")10st.write("**Chapter Lead:** [Signour Melo](https://www.linkedin.com/in/signour-sigmeund-melo-63aa791aa/)")11st.image("pages/RiceDiseaseClassifier.jpeg", caption='', width=450)12 13st.header("How does this app work? βš™")14st.write("""15Once you upload the image of your rice plant using any one of our models, 16they further check the diseased areas and classify the type of disease. 17They also provide information & solutions based on the resulting disease.18""")19 20st.subheader("How to use this app? πŸ€”")21st.markdown("""221. Select any one model from the sidebar232. Upload the image of your rice plant 🌾 & wait for a few seconds243. The model shows the type of disease the plant suffers from.25 26- Choose the second model to know more about the disease & suggested solutions that help prevent them.27""")28 29st.sidebar.info("Please select a page above πŸ‘†")30 31st.sidebar.write("""32### πŸ“Œ Background33Rice is the heart of Filipino cuisine, an ingredient so fundamental to the country’s food culture that it is eaten at every meal, from breakfast to dinner.34It’s served at every meal with almost every dish as well as plays an important role in Filipino celebrations and rituals.35 36### πŸ‘€ The Problem37Rice diseases are a major concern where a variety of fungal, bacterial, & viral diseases can infect rice plants, causing reduced yield,38lower quality, and even total crop loss.These diseases can be devastating to farmers, especially those with limited resources.39*Read more about it [here](https://www.omdena.com/projects/creating-a-rice-disease-classifier-using-open-source-data-and-computer-vision)* 40""")41 42st.sidebar.image("pages/laguna_chapter.png", width=250)