Update pages/3_Life Cycle Of ML Project
Browse files- pages/3_Life Cycle Of ML Project +10 -10
pages/3_Life Cycle Of ML Project
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",understand the problem statement))
|
| 32 |
+
st.button("Data Collection", on_click=display_content, args=("Data Collection",collect the relevent data))
|
| 33 |
+
st.button("Data Preparation", on_click=display_content, args=("Data Preparation", prepare the data according to the problem statement))
|
| 34 |
+
st.button("Exploratory Data Analysis (EDA)", on_click=display_content, args=("Exploratory Data Analysis (EDA)", do simple eda ))
|
| 35 |
+
st.button("Model Selection", on_click=display_content, args=("Model Selection", select the model))
|
| 36 |
+
st.button("Model Training", on_click=display_content, args=("Model Training",train the model))
|
| 37 |
+
st.button("Model Evaluation", on_click=display_content, args=("Model Evaluation", evaluate the model))
|
| 38 |
+
st.button("Model Deployment", on_click=display_content, args=("Model Deployment",deploy the model))
|
| 39 |
+
st.button("Model Maintenance", on_click=display_content, args=("Model Maintenance", monitor the model))
|
| 40 |
+
st.button("Documentation and Reporting", on_click=display_content, args=("Documentation and Reporting", final documentation))
|
| 41 |
|
| 42 |
# Author Details
|
| 43 |
author_name = "Your Name"
|