Update pages/4.Life Cycle of ML.py
Browse files- pages/4.Life Cycle of ML.py +19 -0
pages/4.Life Cycle of ML.py
CHANGED
@@ -10,8 +10,27 @@ pages = st.sidebar.radio("Go to:", ["Life Cycle of ML", "Problem Satement","Data
|
|
10 |
if pages == "Life Cycle of ML":
|
11 |
st.title("Life Cycle of Machine Learning")
|
12 |
st.write("Explore the steps involved in the Machine Learning lifecycle.")
|
|
|
|
|
13 |
if st.button("Data Collection"):
|
14 |
st.experimental_set_query_params(pages="data_collection")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
elif pages == "Data Collection":
|
17 |
st.title("Data Collection")
|
|
|
10 |
if pages == "Life Cycle of ML":
|
11 |
st.title("Life Cycle of Machine Learning")
|
12 |
st.write("Explore the steps involved in the Machine Learning lifecycle.")
|
13 |
+
if st.button("Problem Satement"):
|
14 |
+
st.experimental_set_query_params(pages="Problem_Satement")
|
15 |
if st.button("Data Collection"):
|
16 |
st.experimental_set_query_params(pages="data_collection")
|
17 |
+
if st.button("Simple EDA"):
|
18 |
+
st.experimental_set_query_params(pages="Simple_EDA")
|
19 |
+
if st.button("Data Pre-processing"):
|
20 |
+
st.experimental_set_query_params(pages="Data_Pre-processing")
|
21 |
+
if st.button("Exploratory Data Analysis (EDA)"):
|
22 |
+
st.experimental_set_query_params(pages="Exploratory_Data_Analysis_(EDA)")
|
23 |
+
if st.button("Feature Engineering"):
|
24 |
+
st.experimental_set_query_params(pages="Feature_Engineering")
|
25 |
+
if st.button("Training"):
|
26 |
+
st.experimental_set_query_params(pages="Training")
|
27 |
+
if st.button("Testing"):
|
28 |
+
st.experimental_set_query_params(pages="Testing")
|
29 |
+
if st.button("Deployment"):
|
30 |
+
st.experimental_set_query_params(pages="Deployment")
|
31 |
+
if st.button("Monitoring"):
|
32 |
+
st.experimental_set_query_params(pages="Monitoring")
|
33 |
+
|
34 |
|
35 |
elif pages == "Data Collection":
|
36 |
st.title("Data Collection")
|