Update pages/3_Life Cycle Of ML Project.py
Browse files
pages/3_Life Cycle Of ML Project.py
CHANGED
|
@@ -7,7 +7,9 @@ def display_content(stage):
|
|
| 7 |
elif stage == "Problem Statement":
|
| 8 |
st.markdown("### Problem Statement\nIdentify the problem you want to solve and set clear objectives and success criteria.")
|
| 9 |
elif stage == "Data Collection":
|
| 10 |
-
st.markdown("### Data Collection\nGather relevant data from various sources and store it in a structured format.")
|
|
|
|
|
|
|
| 11 |
elif stage == "Simple EDA":
|
| 12 |
st.markdown("### Simple EDA\nPerform exploratory data analysis to understand data distributions and relationships..")
|
| 13 |
elif stage == "Data Pre-Processing":
|
|
@@ -36,12 +38,8 @@ if st.button(":blue[Overview]"):
|
|
| 36 |
# Buttons for each stage with emojis
|
| 37 |
if st.button(":blue[π Problem Statement]"):
|
| 38 |
display_content("Problem Statement")
|
| 39 |
-
if st.button(":blue[π
|
| 40 |
-
display_content("
|
| 41 |
-
st.session_state.page = "data_collection"
|
| 42 |
-
elif st.session_state.page == "data_collection":
|
| 43 |
-
st.title("Data Collection Page")
|
| 44 |
-
st.write("This page discusses the process of Data Collection.")
|
| 45 |
if st.button(":blue[π οΈ Simple EDA]")
|
| 46 |
display_content("Simple EDA")
|
| 47 |
if st.button(":blue[ Data Pre-Processing]"):
|
|
|
|
| 7 |
elif stage == "Problem Statement":
|
| 8 |
st.markdown("### Problem Statement\nIdentify the problem you want to solve and set clear objectives and success criteria.")
|
| 9 |
elif stage == "Data Collection":
|
| 10 |
+
st.markdown("### Data Collection\nGather relevant data from various sources and store it in a structured format.")elif st.session_state.page == "data_collection":
|
| 11 |
+
elif st.session_state.page == "data_collection":
|
| 12 |
+
st.markdown(""### data_collection\nThis page discusses the process of Data Collection.")
|
| 13 |
elif stage == "Simple EDA":
|
| 14 |
st.markdown("### Simple EDA\nPerform exploratory data analysis to understand data distributions and relationships..")
|
| 15 |
elif stage == "Data Pre-Processing":
|
|
|
|
| 38 |
# Buttons for each stage with emojis
|
| 39 |
if st.button(":blue[π Problem Statement]"):
|
| 40 |
display_content("Problem Statement")
|
| 41 |
+
if st.button(":blue[π Data_Collection]"):
|
| 42 |
+
display_content("Data_Collection")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
if st.button(":blue[π οΈ Simple EDA]")
|
| 44 |
display_content("Simple EDA")
|
| 45 |
if st.button(":blue[ Data Pre-Processing]"):
|