Update pages/3_Life Cycle Of ML Project.py
Browse files
pages/3_Life Cycle Of ML Project.py
CHANGED
|
@@ -8,22 +8,22 @@ def display_content(stage):
|
|
| 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 == "
|
| 12 |
-
st.markdown("###
|
|
|
|
|
|
|
| 13 |
elif stage == "Exploratory Data Analysis (EDA)":
|
| 14 |
st.markdown("### Exploratory Data Analysis (EDA)\nVisualize and analyze the data to understand its distributions and relationships.")
|
| 15 |
-
elif stage == "
|
| 16 |
-
st.markdown("###
|
| 17 |
elif stage == "Model Training":
|
| 18 |
st.markdown("### Model Training\nTrain the model using the training data and optimize its parameters.")
|
| 19 |
-
elif stage == "Model
|
| 20 |
-
st.markdown("### Model
|
| 21 |
elif stage == "Model Deployment":
|
| 22 |
st.markdown("### Model Deployment\nIntegrate the trained model into a production environment and monitor its performance.")
|
| 23 |
-
elif stage == "
|
| 24 |
-
st.markdown("###
|
| 25 |
-
elif stage == "Documentation and Reporting":
|
| 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]")
|
|
@@ -38,19 +38,19 @@ if st.button(":blue[π Problem Statement]"):
|
|
| 38 |
display_content("Problem Statement")
|
| 39 |
if st.button(":blue[π Data Collection]"):
|
| 40 |
display_content("Data Collection")
|
| 41 |
-
if st.button(":blue[π οΈ
|
| 42 |
-
display_content("
|
| 43 |
-
if st.button(":blue[π
|
|
|
|
|
|
|
| 44 |
display_content("Exploratory Data Analysis (EDA)")
|
| 45 |
-
if st.button(":blue[
|
| 46 |
-
display_content("
|
| 47 |
-
if st.button(":blue[
|
| 48 |
display_content("Model Training")
|
| 49 |
-
if st.button(":blue[
|
| 50 |
-
display_content("Model
|
| 51 |
-
if st.button(":blue[π
|
| 52 |
display_content("Model Deployment")
|
| 53 |
-
if st.button(":blue[
|
| 54 |
-
display_content("
|
| 55 |
-
if st.button(":blue[π Documentation and Reporting]"):
|
| 56 |
-
display_content("Documentation and Reporting")
|
|
|
|
| 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 == "Simple EDA":
|
| 12 |
+
st.markdown("### Simple EDA\nPerform exploratory data analysis to understand data distributions and relationships..")
|
| 13 |
+
elif stage == "Data Pre-Processing":
|
| 14 |
+
st.markdown("### Data Pre-Processing\nhere we convert raw data into cleaned data, it involves two steps Cleaning and Transforming.")
|
| 15 |
elif stage == "Exploratory Data Analysis (EDA)":
|
| 16 |
st.markdown("### Exploratory Data Analysis (EDA)\nVisualize and analyze the data to understand its distributions and relationships.")
|
| 17 |
+
elif stage == "Feature Engineering":
|
| 18 |
+
st.markdown("### Feature Engineering\nHere we can create our own new features.")
|
| 19 |
elif stage == "Model Training":
|
| 20 |
st.markdown("### Model Training\nTrain the model using the training data and optimize its parameters.")
|
| 21 |
+
elif stage == "Model Testing":
|
| 22 |
+
st.markdown("### Model Testing\nAssess the model's performance using various metrics and cross-validation techniques.")
|
| 23 |
elif stage == "Model Deployment":
|
| 24 |
st.markdown("### Model Deployment\nIntegrate the trained model into a production environment and monitor its performance.")
|
| 25 |
+
elif stage == "Monitoring":
|
| 26 |
+
st.markdown("### Monitoring\nPeriodically retrain the model with new data and update features as needed.")
|
|
|
|
|
|
|
| 27 |
|
| 28 |
# Title and Introduction
|
| 29 |
st.title(":red[Lifecycle of a Machine Learning Project]")
|
|
|
|
| 38 |
display_content("Problem Statement")
|
| 39 |
if st.button(":blue[π Data Collection]"):
|
| 40 |
display_content("Data Collection")
|
| 41 |
+
if st.button(":blue[π οΈ Simple EDA]"):
|
| 42 |
+
display_content("Simple EDA")
|
| 43 |
+
if st.button(":blue[π Data Pre-Processing"):
|
| 44 |
+
display_content("Data Pre-Processing")
|
| 45 |
+
if st.button(":blue[πExploratory Data Analysis (EDA)]"):
|
| 46 |
display_content("Exploratory Data Analysis (EDA)")
|
| 47 |
+
if st.button(":blue[ποΈ Feature Engineering]"):
|
| 48 |
+
display_content("Feature Engineering")
|
| 49 |
+
if st.button(":blue[Model Training]"):
|
| 50 |
display_content("Model Training")
|
| 51 |
+
if st.button(":blue[π§Model Testing]"):
|
| 52 |
+
display_content("Model Testing")
|
| 53 |
+
if st.button(":blue[πModel Deployment]"):
|
| 54 |
display_content("Model Deployment")
|
| 55 |
+
if st.button(":blue[π Monitoring]"):
|
| 56 |
+
display_content("Monitoring")
|
|
|
|
|
|