Sathwikchowdary commited on
Commit
c3f06fc
·
verified ·
1 Parent(s): b233e29

Update pages/Life_cycle_of_ML.py

Browse files
Files changed (1) hide show
  1. pages/Life_cycle_of_ML.py +21 -1
pages/Life_cycle_of_ML.py CHANGED
@@ -121,6 +121,26 @@ The life cycle of Machine Learning (ML) involves several stages, from defining t
121
  <button style="width: 150px; height: 50px; background-color: #FF6347; border: 1px solid #000; text-align: center; margin: 10px;">Training</button>
122
 
123
  <!-- Testing Button (Circle) -->
124
- <button style="width
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
 
126
 
 
121
  <button style="width: 150px; height: 50px; background-color: #FF6347; border: 1px solid #000; text-align: center; margin: 10px;">Training</button>
122
 
123
  <!-- Testing Button (Circle) -->
124
+ <button style="width: 80px; height: 80px; background-color: #98FB98; border-radius: 50%; border: 1px solid #000; text-align: center; margin: 10px;">Testing</button>
125
+
126
+ <!-- Deploying Button (Ellipse) -->
127
+ <button style="width: 160px; height: 80px; background-color: #F0E68C; border-radius: 40px; border: 1px solid #000; text-align: center; margin: 10px;">Deploying</button>
128
+
129
+ <!-- Arrows between Training, Testing, and Deploying -->
130
+ <line x1="125" y1="400" x2="260" y2="375" stroke="#000" marker-end="url(#arrow)" />
131
+ <line x1="380" y1="375" x2="460" y2="375" stroke="#000" marker-end="url(#arrow)" />
132
+
133
+ <!-- Monitoring Button (Rectangle) -->
134
+ <button style="width: 150px; height: 50px; background-color: #B0E0E6; border: 1px solid #000; text-align: center; margin: 10px;">Monitoring</button>
135
+
136
+ <!-- Arrow from Deploying to Monitoring -->
137
+ <line x1="580" y1="375" x2="325" y2="500" stroke="#000" marker-end="url(#arrow)" />
138
+ </svg>
139
+
140
+ """
141
+
142
+ # Render HTML content in Streamlit
143
+ st.markdown(html_content, unsafe_allow_html=True)
144
+
145
 
146