Spaces:
Sleeping
Sleeping
Update pages/Life_cycle_of_ML.py
Browse files- pages/Life_cycle_of_ML.py +18 -0
pages/Life_cycle_of_ML.py
CHANGED
@@ -157,6 +157,24 @@ The life cycle of Machine Learning (ML) involves several stages, from defining t
|
|
157 |
<!-- Deploying (Ellipse) -->
|
158 |
<ellipse cx="500" cy="375" rx="80" ry="40" fill="#F0E68C" stroke="#000" />
|
159 |
<text x="500" y="380" fill="#000" font-size="14" text-anchor="middle">Deploying</text>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
</svg>
|
161 |
|
162 |
"""
|
|
|
157 |
<!-- Deploying (Ellipse) -->
|
158 |
<ellipse cx="500" cy="375" rx="80" ry="40" fill="#F0E68C" stroke="#000" />
|
159 |
<text x="500" y="380" fill="#000" font-size="14" text-anchor="middle">Deploying</text>
|
160 |
+
|
161 |
+
<!-- Arrows between Training, Testing, and Deploying -->
|
162 |
+
<line x1="125" y1="400" x2="260" y2="375" stroke="#000" marker-end="url(#arrow)" />
|
163 |
+
<line x1="380" y1="375" x2="460" y2="375" stroke="#000" marker-end="url(#arrow)" />
|
164 |
+
|
165 |
+
<!-- Monitoring (Rectangle) -->
|
166 |
+
<rect x="250" y="500" width="150" height="50" fill="#B0E0E6" stroke="#000" />
|
167 |
+
<text x="325" y="530" fill="#000" font-size="14" text-anchor="middle">Monitoring</text>
|
168 |
+
|
169 |
+
<!-- Arrow from Deploying to Monitoring -->
|
170 |
+
<line x1="580" y1="375" x2="325" y2="500" stroke="#000" marker-end="url(#arrow)" />
|
171 |
+
|
172 |
+
<!-- Define arrow marker -->
|
173 |
+
<defs>
|
174 |
+
<marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="4" markerHeight="4" orient="auto">
|
175 |
+
<polygon points="0,0 10,5 0,10" fill="#000" />
|
176 |
+
</marker>
|
177 |
+
</defs>
|
178 |
</svg>
|
179 |
|
180 |
"""
|