File size: 1,511 Bytes
e9f27cf a4d9eb9 e9f27cf a4d9eb9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 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") |