Sathwikchowdary commited on
Commit
d8f9eb5
·
verified ·
1 Parent(s): 9d88a3f

Update pages/Life_cycle_of_ML.py

Browse files
Files changed (1) hide show
  1. pages/Life_cycle_of_ML.py +0 -16
pages/Life_cycle_of_ML.py CHANGED
@@ -1,5 +1,3 @@
1
-
2
-
3
  ## Shapes Representing the ML Life Cycle
4
 
5
  <svg width="600" height="300">
@@ -42,33 +40,19 @@
42
  </defs>
43
  </svg>
44
  """
45
-
46
  # Render HTML content in Streamlit
47
  st.markdown(html_content, unsafe_allow_html=True)
48
-
49
-
50
  # Render the SVG
51
  st.markdown(html_content, unsafe_allow_html=True)
52
-
53
  # Interactive buttons for stages
54
  st.subheader("Stages in ML Life Cycle")
55
  if st.button("Problem Statement"):
56
- st.write("Understanding the problem and setting objectives for the ML model.")
57
  if st.button("Data Collection"):
58
- st.write("Gathering relevant data for model training.")
59
  if st.button("Simple EDA"):
60
- st.write("Initial analysis to understand the dataset's basic properties.")
61
  if st.button("Data Preprocessing"):
62
- st.write("Cleaning the data to ensure it's in a usable format.")
63
  if st.button("EDA"):
64
- st.write("Deeper analysis to gain insights and find patterns in the data.")
65
  if st.button("Feature Engineering"):
66
- st.write("Creating new features or modifying existing ones to improve model performance.")
67
  if st.button("Training"):
68
- st.write("Training machine learning models using the processed data.")
69
  if st.button("Testing"):
70
- st.write("Evaluating the trained model using a test set to assess its performance.")
71
  if st.button("Deploying"):
72
- st.write("Deploying the model to a production environment.")
73
  if st.button("Monitoring"):
74
- st.write("Continuously monitoring the model's performance in the production environment.")
 
 
 
1
  ## Shapes Representing the ML Life Cycle
2
 
3
  <svg width="600" height="300">
 
40
  </defs>
41
  </svg>
42
  """
 
43
  # Render HTML content in Streamlit
44
  st.markdown(html_content, unsafe_allow_html=True)
 
 
45
  # Render the SVG
46
  st.markdown(html_content, unsafe_allow_html=True)
 
47
  # Interactive buttons for stages
48
  st.subheader("Stages in ML Life Cycle")
49
  if st.button("Problem Statement"):
 
50
  if st.button("Data Collection"):
 
51
  if st.button("Simple EDA"):
 
52
  if st.button("Data Preprocessing"):
 
53
  if st.button("EDA"):
 
54
  if st.button("Feature Engineering"):
 
55
  if st.button("Training"):
 
56
  if st.button("Testing"):
 
57
  if st.button("Deploying"):
 
58
  if st.button("Monitoring"):