Update pages/3_Life Cycle Of ML Project.py
Browse files
pages/3_Life Cycle Of ML Project.py
CHANGED
|
@@ -28,16 +28,16 @@ st.title("LifeCycle of Machine Learning Project")
|
|
| 28 |
st.markdown("Click on a stage to learn more about it.")
|
| 29 |
|
| 30 |
# Buttons for each stage
|
| 31 |
-
st.button("Problem Definition", on_click=display_content, args=("Problem Definition",
|
| 32 |
-
st.button("Data Collection", on_click=display_content, args=("Data Collection",
|
| 33 |
-
st.button("Data Preparation", on_click=display_content, args=("Data Preparation",
|
| 34 |
-
st.button("Exploratory Data Analysis (EDA)", on_click=display_content, args=("Exploratory Data Analysis (EDA)",
|
| 35 |
-
st.button("Model Selection", on_click=display_content, args=("Model Selection",
|
| 36 |
-
st.button("Model Training", on_click=display_content, args=("Model Training",
|
| 37 |
-
st.button("Model Evaluation", on_click=display_content, args=("Model Evaluation",
|
| 38 |
-
st.button("Model Deployment", on_click=display_content, args=("Model Deployment",
|
| 39 |
-
st.button("Model Maintenance", on_click=display_content, args=("Model Maintenance",
|
| 40 |
-
st.button("Documentation and Reporting", on_click=display_content, args=("Documentation and Reporting",
|
| 41 |
|
| 42 |
# Author Details
|
| 43 |
author_name = "Your Name"
|
|
|
|
| 28 |
st.markdown("Click on a stage to learn more about it.")
|
| 29 |
|
| 30 |
# Buttons for each stage
|
| 31 |
+
st.button("Problem Definition", on_click=display_content, args=("Problem Definition",))
|
| 32 |
+
st.button("Data Collection", on_click=display_content, args=("Data Collection",))
|
| 33 |
+
st.button("Data Preparation", on_click=display_content, args=("Data Preparation",))
|
| 34 |
+
st.button("Exploratory Data Analysis (EDA)", on_click=display_content, args=("Exploratory Data Analysis (EDA)", ))
|
| 35 |
+
st.button("Model Selection", on_click=display_content, args=("Model Selection", ))
|
| 36 |
+
st.button("Model Training", on_click=display_content, args=("Model Training",))
|
| 37 |
+
st.button("Model Evaluation", on_click=display_content, args=("Model Evaluation", ))
|
| 38 |
+
st.button("Model Deployment", on_click=display_content, args=("Model Deployment",))
|
| 39 |
+
st.button("Model Maintenance", on_click=display_content, args=("Model Maintenance", ))
|
| 40 |
+
st.button("Documentation and Reporting", on_click=display_content, args=("Documentation and Reporting", ))
|
| 41 |
|
| 42 |
# Author Details
|
| 43 |
author_name = "Your Name"
|