Spaces:
Sleeping
Sleeping
Update pages/Life_cycle_of_ML.py
Browse files- pages/Life_cycle_of_ML.py +49 -0
pages/Life_cycle_of_ML.py
CHANGED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div align="center">
|
2 |
+
<svg width="600" height="400">
|
3 |
+
<!-- Problem Definition -->
|
4 |
+
<a href="#problem-definition">
|
5 |
+
<rect x="50" y="50" width="150" height="50" fill="#FFB6C1" stroke="#000" />
|
6 |
+
<text x="75" y="80" fill="#000" font-size="14">Problem Definition</text>
|
7 |
+
</a>
|
8 |
+
|
9 |
+
<!-- Data Collection -->
|
10 |
+
<a href="#data-collection">
|
11 |
+
<circle cx="300" cy="75" r="40" fill="#ADD8E6" stroke="#000" />
|
12 |
+
<text x="270" y="80" fill="#000" font-size="14">Data Collection</text>
|
13 |
+
</a>
|
14 |
+
|
15 |
+
<!-- Data Preprocessing -->
|
16 |
+
<a href="#data-preprocessing">
|
17 |
+
<ellipse cx="500" cy="75" rx="80" ry="40" fill="#90EE90" stroke="#000" />
|
18 |
+
<text x="445" y="80" fill="#000" font-size="14">Data Preprocessing</text>
|
19 |
+
</a>
|
20 |
+
|
21 |
+
<!-- Arrows -->
|
22 |
+
<line x1="200" y1="75" x2="260" y2="75" stroke="#000" marker-end="url(#arrow)" />
|
23 |
+
<line x1="340" y1="75" x2="420" y2="75" stroke="#000" marker-end="url(#arrow)" />
|
24 |
+
|
25 |
+
<!-- Model Building -->
|
26 |
+
<a href="#model-building">
|
27 |
+
<rect x="50" y="200" width="150" height="50" fill="#FFD700" stroke="#000" />
|
28 |
+
<text x="75" y="230" fill="#000" font-size="14">Model Building</text>
|
29 |
+
</a>
|
30 |
+
|
31 |
+
<!-- Evaluation -->
|
32 |
+
<a href="#evaluation">
|
33 |
+
<circle cx="300" cy="225" r="40" fill="#FF7F50" stroke="#000" />
|
34 |
+
<text x="275" y="230" fill="#000" font-size="14">Evaluation</text>
|
35 |
+
</a>
|
36 |
+
|
37 |
+
<!-- Deployment -->
|
38 |
+
<a href="#deployment">
|
39 |
+
<rect x="450" y="200" width="150" height="50" fill="#9370DB" stroke="#000" />
|
40 |
+
<text x="475" y="230" fill="#000" font-size="14">Deployment</text>
|
41 |
+
</a>
|
42 |
+
|
43 |
+
<!-- Arrows -->
|
44 |
+
<line x1="125" y1="250" x2="260" y2="225" stroke="#000" marker-end="url(#arrow)" />
|
45 |
+
<line x1="340" y1="225" x2="450" y2="225" stroke="#000" marker-end="url(#arrow)" />
|
46 |
+
</svg>
|
47 |
+
</div>
|
48 |
+
|
49 |
+
---
|