Update pages/3_Life Cycle Of ML Project.py
Browse files
pages/3_Life Cycle Of ML Project.py
CHANGED
|
@@ -33,15 +33,24 @@ st.markdown("Click on a stage to learn more about it.")
|
|
| 33 |
if st.button("Overview"):
|
| 34 |
display_content("Overview")
|
| 35 |
|
| 36 |
-
# Buttons for each stage with
|
| 37 |
-
st.button("π Problem Definition"
|
| 38 |
-
|
| 39 |
-
st.button("
|
| 40 |
-
|
| 41 |
-
st.button("
|
| 42 |
-
|
| 43 |
-
st.button("
|
| 44 |
-
|
| 45 |
-
st.button("
|
| 46 |
-
|
| 47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
if st.button("Overview"):
|
| 34 |
display_content("Overview")
|
| 35 |
|
| 36 |
+
# Buttons for each stage with emojis
|
| 37 |
+
if st.button("π Problem Definition"):
|
| 38 |
+
display_content("Problem Definition")
|
| 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")
|