sree4411 commited on
Commit
3d125f5
Β·
verified Β·
1 Parent(s): 339b2f6

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 +21 -12
pages/3_Life Cycle Of ML Project.py CHANGED
@@ -33,15 +33,24 @@ st.markdown("Click on a stage to learn more about it.")
33
  if st.button("Overview"):
34
  display_content("Overview")
35
 
36
- # Buttons for each stage with colors and emojis
37
- st.button("🌟 Problem Definition", on_click=display_content, args=("Problem Definition",), key="problem_definition", help="Identify the problem you want to solve and set clear objectives and success criteria.", style="background-color: #FF6347; color: white;")
38
- st.button("πŸ“Š Data Collection", on_click=display_content, args=("Data Collection",), key="data_collection", help="Gather relevant data from various sources and store it in a structured format.", style="background-color: #4682B4; color: white;")
39
- st.button("πŸ› οΈ Data Preparation", on_click=display_content, args=("Data Preparation",), key="data_preparation", help="Clean, transform, and engineer features from the data to prepare it for modeling.", style="background-color: #32CD32; color: white;")
40
- st.button("πŸ” Exploratory Data Analysis (EDA)", on_click=display_content, args=("Exploratory Data Analysis (EDA)",), key="eda", help="Visualize and analyze the data to understand its distributions and relationships.", style="background-color: #FFD700; color: black;")
41
- st.button("πŸ€– Model Selection", on_click=display_content, args=("Model Selection",), key="model_selection", help="Choose appropriate machine learning algorithms and develop a baseline model.", style="background-color: #FF4500; color: white;")
42
- st.button("πŸ‹οΈ Model Training", on_click=display_content, args=("Model Training",), key="model_training", help="Train the model using the training data and optimize its parameters.", style="background-color: #1E90FF; color: white;")
43
- st.button("πŸ“ˆ Model Evaluation", on_click=display_content, args=("Model Evaluation",), key="model_evaluation", help="Assess the model's performance using various metrics and cross-validation techniques.", style="background-color: #8A2BE2; color: white;")
44
- st.button("πŸš€ Model Deployment", on_click=display_content, args=("Model Deployment",), key="model_deployment", help="Integrate the trained model into a production environment and monitor its performance.", style="background-color: #FF1493; color: white;")
45
- st.button("πŸ”§ Model Maintenance", on_click=display_content, args=("Model Maintenance",), key="model_maintenance", help="Periodically retrain the model with new data and update features as needed.", style="background-color: #00CED1; color: white;")
46
- st.button("πŸ“ Documentation and Reporting", on_click=display_content, args=("Documentation and Reporting",), key="documentation_reporting", help="Document the entire project and share the results and insights with stakeholders.", style="background-color: #FF69B4; color: white;")
47
-
 
 
 
 
 
 
 
 
 
 
33
  if st.button("Overview"):
34
  display_content("Overview")
35
 
36
+ # Buttons for each stage with emojis
37
+ if st.button("🌟 Problem Definition"):
38
+ display_content("Problem Definition")
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")