Srikanthgoud7's picture
Update app.py
dd6860e verified
Raw
History Blame Contribute Delete
990 Bytes
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")