sree4411 commited on
Commit
b652e9c
Β·
verified Β·
1 Parent(s): d6aeab5

Update pages/3_Life Cycle Of ML Project.py

Browse files
pages/3_Life Cycle Of ML Project.py CHANGED
@@ -13,11 +13,13 @@ if st.session_state.page == "home":
13
  st.markdown("Click on a stage to learn more about it.")
14
 
15
  # Buttons for various stages of the ML project lifecycle
16
- if st.button(":blue[πŸ“Š Data Collection]"):
17
- st.session_state.page = "data_collection"
18
 
19
  if st.button(":blue[🌟 Problem Statement]"):
20
  st.markdown("### Problem Statement\nIdentify the problem you want to solve and set clear objectives and success criteria.")
 
 
 
21
 
22
  if st.button(":blue[πŸ› οΈ Simple EDA]"):
23
  st.markdown("### Simple EDA\nPerform exploratory data analysis to understand data distributions and relationships.")
 
13
  st.markdown("Click on a stage to learn more about it.")
14
 
15
  # Buttons for various stages of the ML project lifecycle
16
+
 
17
 
18
  if st.button(":blue[🌟 Problem Statement]"):
19
  st.markdown("### Problem Statement\nIdentify the problem you want to solve and set clear objectives and success criteria.")
20
+
21
+ if st.button(":blue[πŸ“Š Data Collection]"):
22
+ st.session_state.page = "data_collection"
23
 
24
  if st.button(":blue[πŸ› οΈ Simple EDA]"):
25
  st.markdown("### Simple EDA\nPerform exploratory data analysis to understand data distributions and relationships.")