Spaces:
Sleeping
Sleeping
Update pages/Life_cycle_of_ML.py
Browse files- pages/Life_cycle_of_ML.py +9 -16
pages/Life_cycle_of_ML.py
CHANGED
@@ -45,24 +45,17 @@ html_content = """
|
|
45 |
<rect x="350" y="500" width="200" height="50" fill="#B0E0E6" stroke="#000" />
|
46 |
<text x="450" y="530" fill="#000" font-size="14" text-anchor="middle">Monitoring</text>
|
47 |
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
<
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
<!-- Define arrow marker -->
|
58 |
-
<defs>
|
59 |
-
<marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="4" markerHeight="4" orient="auto">
|
60 |
-
<polygon points="0,0 10,5 0,10" fill="#000" />
|
61 |
-
</marker>
|
62 |
-
</defs>
|
63 |
</svg>
|
64 |
"""
|
65 |
-
|
66 |
# Display the diagram
|
67 |
st.markdown(html_content, unsafe_allow_html=True)
|
68 |
|
|
|
45 |
<rect x="350" y="500" width="200" height="50" fill="#B0E0E6" stroke="#000" />
|
46 |
<text x="450" y="530" fill="#000" font-size="14" text-anchor="middle">Monitoring</text>
|
47 |
|
48 |
+
!-- Arrow from Deploying to Monitoring -->
|
49 |
+
<line x1="580" y1="375" x2="325" y2="500" stroke="#000" marker-end="url(#arrow)" />
|
50 |
+
|
51 |
+
<!-- Define arrow marker -->
|
52 |
+
<defs>
|
53 |
+
<marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="4" markerHeight="4" orient="auto">
|
54 |
+
<polygon points="0,0 10,5 0,10" fill="#000" />
|
55 |
+
</marker>
|
56 |
+
</defs>
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
</svg>
|
58 |
"""
|
|
|
59 |
# Display the diagram
|
60 |
st.markdown(html_content, unsafe_allow_html=True)
|
61 |
|