Shru/Rice_Disease_Classifier
0
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)