Update pages/3_Life Cycle Of ML Project.py
Browse files
pages/3_Life Cycle Of ML Project.py
CHANGED
|
@@ -3,7 +3,7 @@ import streamlit as st
|
|
| 3 |
# Function to display content based on button click
|
| 4 |
def display_content(stage):
|
| 5 |
if stage == "Overview":
|
| 6 |
-
st.markdown("### Overview\nThis
|
| 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":
|
|
@@ -34,23 +34,23 @@ 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"):
|
| 42 |
display_content("Data Preparation")
|
| 43 |
-
if st.button("π Exploratory Data Analysis (EDA)"):
|
| 44 |
-
display_content("Exploratory Data Analysis (EDA)")
|
| 45 |
-
if st.button("π€ Model Selection"):
|
| 46 |
display_content("Model Selection")
|
| 47 |
-
if st.button("ποΈ Model Training"):
|
| 48 |
display_content("Model Training")
|
| 49 |
-
if st.button("π Model Evaluation"):
|
| 50 |
display_content("Model Evaluation")
|
| 51 |
-
if st.button("π Model Deployment"):
|
| 52 |
display_content("Model Deployment")
|
| 53 |
-
if st.button("π§ Model Maintenance"):
|
| 54 |
-
display_content("Model Maintenance")
|
| 55 |
-
if st.button("π Documentation and Reporting"):
|
| 56 |
-
display_content("Documentation and Reporting")
|
|
|
|
| 3 |
# Function to display content based on button click
|
| 4 |
def display_content(stage):
|
| 5 |
if stage == "Overview":
|
| 6 |
+
st.markdown("### Overview\nThis page guides you through the lifecycle of a machine learning project.It involves the following process.")
|
| 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":
|
|
|
|
| 34 |
display_content("Overview")
|
| 35 |
|
| 36 |
# Buttons for each stage with emojis
|
| 37 |
+
if st.button(":blue[π Problem Statement]"):
|
| 38 |
display_content("Problem Statement")
|
| 39 |
+
if st.button(":blue[π Data Collection]"):
|
| 40 |
+
display_content(":blue[Data Collection]")
|
| 41 |
if st.button("π οΈ Data Preparation"):
|
| 42 |
display_content("Data Preparation")
|
| 43 |
+
if st.button(":blue[π Exploratory Data Analysis (EDA)]"):
|
| 44 |
+
display_content(":blue[Exploratory Data Analysis (EDA)]")
|
| 45 |
+
if st.button(":blue[π€ Model Selection]"):
|
| 46 |
display_content("Model Selection")
|
| 47 |
+
if st.button(":blue[ποΈ Model Training]"):
|
| 48 |
display_content("Model Training")
|
| 49 |
+
if st.button(":blue[π Model Evaluation]"):
|
| 50 |
display_content("Model Evaluation")
|
| 51 |
+
if st.button(":blue[π Model Deployment]"):
|
| 52 |
display_content("Model Deployment")
|
| 53 |
+
if st.button(":blue[π§ Model Maintenance]"):
|
| 54 |
+
display_content(":blue[Model Maintenance]")
|
| 55 |
+
if st.button(":blue[π Documentation and Reporting]"):
|
| 56 |
+
display_content(":blue[Documentation and Reporting]")
|