Spaces:
Sleeping
Sleeping
Update pages/Life_cycle_of_ML.py
Browse files- pages/Life_cycle_of_ML.py +33 -0
pages/Life_cycle_of_ML.py
CHANGED
@@ -84,7 +84,40 @@ The life cycle of Machine Learning (ML) involves several stages, from defining t
|
|
84 |
</marker>
|
85 |
</defs>
|
86 |
</svg>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
"""
|
88 |
|
89 |
# Render HTML content in Streamlit
|
90 |
st.markdown(html_content, unsafe_allow_html=True)
|
|
|
|
84 |
</marker>
|
85 |
</defs>
|
86 |
</svg>
|
87 |
+
|
88 |
+
<!-- Buttons below shapes -->
|
89 |
+
|
90 |
+
<!-- Problem Statement Button (Rectangle) -->
|
91 |
+
<button style="width: 150px; height: 50px; background-color: #FFB6C1; border: 1px solid #000; text-align: center;">Problem Statement</button>
|
92 |
+
|
93 |
+
<!-- Data Collection Button (Ellipse) -->
|
94 |
+
<button style="width: 160px; height: 80px; background-color: #ADD8E6; border-radius: 40px; border: 1px solid #000; text-align: center;">Data Collection</button>
|
95 |
+
|
96 |
+
<!-- Simple EDA Button (Ellipse) -->
|
97 |
+
<button style="width: 160px; height: 80px; background-color: #90EE90; border-radius: 40px; border: 1px solid #000; text-align: center;">Simple EDA</button>
|
98 |
+
|
99 |
+
<!-- Data Preprocessing Button (Rectangle) -->
|
100 |
+
<button style="width: 150px; height: 50px; background-color: #FFD700; border: 1px solid #000; text-align: center;">Data Preprocessing</button>
|
101 |
+
|
102 |
+
<!-- EDA Button (Circle) -->
|
103 |
+
<button style="width: 80px; height: 80px; background-color: #FF7F50; border-radius: 50%; border: 1px solid #000; text-align: center;">EDA</button>
|
104 |
+
|
105 |
+
<!-- Feature Engineering Button (Ellipse) -->
|
106 |
+
<button style="width: 160px; height: 80px; background-color: #9370DB; border-radius: 40px; border: 1px solid #000; text-align: center;">Feature Engineering</button>
|
107 |
+
|
108 |
+
<!-- Training Button (Rectangle) -->
|
109 |
+
<button style="width: 150px; height: 50px; background-color: #FF6347; border: 1px solid #000; text-align: center;">Training</button>
|
110 |
+
|
111 |
+
<!-- Testing Button (Circle) -->
|
112 |
+
<button style="width: 80px; height: 80px; background-color: #98FB98; border-radius: 50%; border: 1px solid #000; text-align: center;">Testing</button>
|
113 |
+
|
114 |
+
<!-- Deploying Button (Ellipse) -->
|
115 |
+
<button style="width: 160px; height: 80px; background-color: #F0E68C; border-radius: 40px; border: 1px solid #000; text-align: center;">Deploying</button>
|
116 |
+
|
117 |
+
<!-- Monitoring Button (Rectangle) -->
|
118 |
+
<button style="width: 150px; height: 50px; background-color: #B0E0E6; border: 1px solid #000; text-align: center;">Monitoring</button>
|
119 |
"""
|
120 |
|
121 |
# Render HTML content in Streamlit
|
122 |
st.markdown(html_content, unsafe_allow_html=True)
|
123 |
+
|