Update pages/Life Cycle of ML.py
Browse files- pages/Life Cycle of ML.py +14 -4
pages/Life Cycle of ML.py
CHANGED
@@ -4,15 +4,25 @@ import os
|
|
4 |
|
5 |
# Sidebar for navigation
|
6 |
st.sidebar.title("Navigation")
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
-
|
|
|
10 |
st.title("Life Cycle of Machine Learning")
|
11 |
st.write("Explore the steps involved in the Machine Learning lifecycle.")
|
12 |
if st.button("Data Collection"):
|
13 |
-
st.experimental_set_query_params(
|
14 |
|
15 |
-
elif
|
16 |
st.title("Data Collection")
|
17 |
st.write("Explore the types of data and formats involved in Machine Learning.")
|
18 |
st.write("### Types of Data:")
|
|
|
4 |
|
5 |
# Sidebar for navigation
|
6 |
st.sidebar.title("Navigation")
|
7 |
+
pages = st.sidebar.radio("Go to:", ["Life Cycle of ML", "Problem Satement"])
|
8 |
+
pages = st.sidebar.radio("Go to:", ["Life Cycle of ML", "Data Collection"])
|
9 |
+
pages = st.sidebar.radio("Go to:", ["Life Cycle of ML", "Simple EDA"])
|
10 |
+
pages = st.sidebar.radio("Go to:", ["Life Cycle of ML", "Data Pre-processing"])
|
11 |
+
pages = st.sidebar.radio("Go to:", ["Life Cycle of ML", "Exploratory Data Analysis (EDA)"])
|
12 |
+
pages = st.sidebar.radio("Go to:", ["Life Cycle of ML", "Feature Engineering"])
|
13 |
+
pages = st.sidebar.radio("Go to:", ["Life Cycle of ML", "Training"])
|
14 |
+
pages = st.sidebar.radio("Go to:", ["Life Cycle of ML", "Testing"])
|
15 |
+
pages = st.sidebar.radio("Go to:", ["Life Cycle of ML", "Deployment"])
|
16 |
+
pages = st.sidebar.radio("Go to:", ["Life Cycle of ML", "Monitoring"])
|
17 |
|
18 |
+
|
19 |
+
if pages == "Life Cycle of ML":
|
20 |
st.title("Life Cycle of Machine Learning")
|
21 |
st.write("Explore the steps involved in the Machine Learning lifecycle.")
|
22 |
if st.button("Data Collection"):
|
23 |
+
st.experimental_set_query_params(pages="data_collection")
|
24 |
|
25 |
+
elif pages == "Data Collection":
|
26 |
st.title("Data Collection")
|
27 |
st.write("Explore the types of data and formats involved in Machine Learning.")
|
28 |
st.write("### Types of Data:")
|