import streamlit as st # ๐Ÿ“„ Problem Statement st.markdown(""" ## ๐Ÿ“„ Problem Statement Industrial and residential projects often face uncertainties and environmental risks during planning and execution. Failing to assess risk levels early can lead to project delays, increased costs, and environmental concerns. There is a growing need for a reliable, data-driven approach to evaluate risk levels based on project features like location, budget, team size, and environmental factors. """) # ๐ŸŽฏ Objective st.markdown(""" ## ๐ŸŽฏ Objective This project aims to: - ๐Ÿง  Develop a Machine Learning model using **Random Forest Classifier** to classify projects into **Low**, **Medium**, or **High Risk**. - ๐ŸŒ Provide an intuitive **Streamlit web application** to allow users to input key project parameters and receive instant risk classification. - โš ๏ธ Help stakeholders make **informed decisions** by understanding potential risk levels in advance. - ๐Ÿงช Demonstrate the end-to-end pipeline of a classification problem including **data preprocessing**, **model building**, and **deployment**. ### ๐Ÿงฉ Why is this important? - โœ… Promotes **early risk detection** and **preventive planning**. - โœ… Supports data-driven decisions in urban and industrial development. - โœ… Demonstrates real-world use of **ML classification** in project management. """) if st.button('Next'): st.switch_page("pages/2 Data Understanding.py") if st.button('Back'): st.switch_page("app.py")