Update pages/3_Life Cycle Of ML Project.py
Browse files
pages/3_Life Cycle Of ML Project.py
CHANGED
|
@@ -5,7 +5,7 @@ def display_content(stage):
|
|
| 5 |
if stage == "Overview":
|
| 6 |
st.markdown("### Overview\nThis application guides you through the lifecycle of a machine learning project.")
|
| 7 |
elif stage == "Problem Definition":
|
| 8 |
-
st.markdown("### Problem
|
| 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 == "Data Preparation":
|
|
@@ -26,16 +26,16 @@ def display_content(stage):
|
|
| 26 |
st.markdown("### Documentation and Reporting\nDocument the entire project and share the results and insights with stakeholders.")
|
| 27 |
|
| 28 |
# Title and Introduction
|
| 29 |
-
st.title("Lifecycle of a Machine Learning Project")
|
| 30 |
st.markdown("Click on a stage to learn more about it.")
|
| 31 |
|
| 32 |
# Overview button
|
| 33 |
-
if st.button("Overview"):
|
| 34 |
display_content("Overview")
|
| 35 |
|
| 36 |
# Buttons for each stage with emojis
|
| 37 |
-
if st.button("π Problem
|
| 38 |
-
display_content("Problem
|
| 39 |
if st.button("π Data Collection"):
|
| 40 |
display_content("Data Collection")
|
| 41 |
if st.button("π οΈ Data Preparation"):
|
|
|
|
| 5 |
if stage == "Overview":
|
| 6 |
st.markdown("### Overview\nThis application guides you through the lifecycle of a machine learning project.")
|
| 7 |
elif stage == "Problem Definition":
|
| 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 == "Data Preparation":
|
|
|
|
| 26 |
st.markdown("### Documentation and Reporting\nDocument the entire project and share the results and insights with stakeholders.")
|
| 27 |
|
| 28 |
# Title and Introduction
|
| 29 |
+
st.title(":red[Lifecycle of a Machine Learning Project]")
|
| 30 |
st.markdown("Click on a stage to learn more about it.")
|
| 31 |
|
| 32 |
# Overview button
|
| 33 |
+
if st.button(":blue[Overview]"):
|
| 34 |
display_content("Overview")
|
| 35 |
|
| 36 |
# Buttons for each stage with emojis
|
| 37 |
+
if st.button("π Problem Statement"):
|
| 38 |
+
display_content("Problem Statement")
|
| 39 |
if st.button("π Data Collection"):
|
| 40 |
display_content("Data Collection")
|
| 41 |
if st.button("π οΈ Data Preparation"):
|