File size: 990 Bytes
3e87be6 dd6860e | 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 | import streamlit as st
st.set_page_config(page_title="AI-Driven Project Risk Level Classification Tool", page_icon="π§")
st.markdown("""
# π§ AI-Driven Project Risk Level Classification Tool
π **Project Introduction**
This project focuses on classifying the **risk level of industrial-residential projects** using machine learning techniques.
By analyzing project details like type, budget, team size, and environmental parameters, the model predicts whether a project falls
under a low, medium, or high risk category.
π **Project Overview**
- Built using **Python** and **Streamlit**
- Deployed on **Hugging Face Spaces**
- Machine Learning Algorithm: **KNearestNeighbors Classifier**
π§ **Objective**
To assist stakeholders in proactively identifying project risks to take informed decisions and optimize project success rates.
π¨βπ» **Project by**
**Srikanth Edigi**
""")
if st.button('Next'):
st.switch_page("pages/1 Problem Statement.py")
|