sree4411 commited on
Commit
f7c8a2d
Β·
verified Β·
1 Parent(s): c18b77e

Update pages/3_Life Cycle Of ML Project.py

Browse files
Files changed (1) hide show
  1. pages/3_Life Cycle Of ML Project.py +14 -14
pages/3_Life Cycle Of ML Project.py CHANGED
@@ -3,7 +3,7 @@ import streamlit as st
3
  # Function to display content based on button click
4
  def display_content(stage):
5
  if stage == "Overview":
6
- st.markdown("### Overview\nThis application guides you through the lifecycle of a machine learning project.")
7
  elif stage == "Problem Definition":
8
  st.markdown("### Problem Statement\nIdentify the problem you want to solve and set clear objectives and success criteria.")
9
  elif stage == "Data Collection":
@@ -34,23 +34,23 @@ if st.button(":blue[Overview]"):
34
  display_content("Overview")
35
 
36
  # Buttons for each stage with emojis
37
- if st.button("🌟 Problem Statement"):
38
  display_content("Problem Statement")
39
- if st.button("πŸ“Š Data Collection"):
40
- display_content("Data Collection")
41
  if st.button("πŸ› οΈ Data Preparation"):
42
  display_content("Data Preparation")
43
- if st.button("πŸ” Exploratory Data Analysis (EDA)"):
44
- display_content("Exploratory Data Analysis (EDA)")
45
- if st.button("πŸ€– Model Selection"):
46
  display_content("Model Selection")
47
- if st.button("πŸ‹οΈ Model Training"):
48
  display_content("Model Training")
49
- if st.button("πŸ“ˆ Model Evaluation"):
50
  display_content("Model Evaluation")
51
- if st.button("πŸš€ Model Deployment"):
52
  display_content("Model Deployment")
53
- if st.button("πŸ”§ Model Maintenance"):
54
- display_content("Model Maintenance")
55
- if st.button("πŸ“ Documentation and Reporting"):
56
- display_content("Documentation and Reporting")
 
3
  # Function to display content based on button click
4
  def display_content(stage):
5
  if stage == "Overview":
6
+ st.markdown("### Overview\nThis page guides you through the lifecycle of a machine learning project.It involves the following process.")
7
  elif stage == "Problem Definition":
8
  st.markdown("### Problem Statement\nIdentify the problem you want to solve and set clear objectives and success criteria.")
9
  elif stage == "Data Collection":
 
34
  display_content("Overview")
35
 
36
  # Buttons for each stage with emojis
37
+ if st.button(":blue[🌟 Problem Statement]"):
38
  display_content("Problem Statement")
39
+ if st.button(":blue[πŸ“Š Data Collection]"):
40
+ display_content(":blue[Data Collection]")
41
  if st.button("πŸ› οΈ Data Preparation"):
42
  display_content("Data Preparation")
43
+ if st.button(":blue[πŸ” Exploratory Data Analysis (EDA)]"):
44
+ display_content(":blue[Exploratory Data Analysis (EDA)]")
45
+ if st.button(":blue[πŸ€– Model Selection]"):
46
  display_content("Model Selection")
47
+ if st.button(":blue[πŸ‹οΈ Model Training]"):
48
  display_content("Model Training")
49
+ if st.button(":blue[πŸ“ˆ Model Evaluation]"):
50
  display_content("Model Evaluation")
51
+ if st.button(":blue[πŸš€ Model Deployment]"):
52
  display_content("Model Deployment")
53
+ if st.button(":blue[πŸ”§ Model Maintenance]"):
54
+ display_content(":blue[Model Maintenance]")
55
+ if st.button(":blue[πŸ“ Documentation and Reporting]"):
56
+ display_content(":blue[Documentation and Reporting]")