Praneeth2606 commited on
Commit
ab93579
·
verified ·
1 Parent(s): df91be5

Create pages/2 Problem Statement.py

Browse files
Files changed (1) hide show
  1. pages/2 Problem Statement.py +27 -0
pages/2 Problem Statement.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ # App Title
4
+ st.title("📄 Problem Statement")
5
+
6
+ # Problem Statement Content
7
+ st.markdown("""
8
+ ### Problem Statement:
9
+ The project management domain involves high variability in estimating project budgets, influenced by numerous parameters such as complexity, stakeholders, integration requirements, and more.
10
+
11
+ Project teams often struggle with accurate budget forecasting. Similarly, project stakeholders require insights into budget drivers for better resource planning and decision-making.
12
+
13
+ ### Objective:
14
+ - Develop a KNN-based regression model to predict project budgets.
15
+ - Build an interactive Streamlit app for real-time predictions.
16
+ - Demonstrate a full machine learning pipeline: data processing, training, tuning, and deployment.
17
+
18
+ ### Why is this important?
19
+ - Aids in realistic project planning and budget allocation.
20
+ - Helps demonstrate the impact of individual project features on costs.
21
+ - Real-world application of regression modeling in project planning.
22
+ """)
23
+ if st.button("Next >>"):
24
+ st.switch_page(r"pages/3 Data Understanding.py")
25
+
26
+ if st.button("<< Back"):
27
+ st.switch_page("reg.py")