Sathwikchowdary commited on
Commit
b22567f
·
verified ·
1 Parent(s): c500a02

Update pages/Life_cycle_of_ML.py

Browse files
Files changed (1) hide show
  1. 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
- <!-- Arrows -->
49
- <line x1="250" y1="75" x2="350" y2="75" stroke="#000" marker-end="url(#arrow)" />
50
- <line x1="450" y1="75" x2="600" y2="75" stroke="#000" marker-end="url(#arrow)" />
51
- <line x1="250" y1="225" x2="350" y2="225" stroke="#000" marker-end="url(#arrow)" />
52
- <line x1="450" y1="225" x2="600" y2="225" stroke="#000" marker-end="url(#arrow)" />
53
- <line x1="250" y1="375" x2="350" y2="375" stroke="#000" marker-end="url(#arrow)" />
54
- <line x1="450" y1="375" x2="600" y2="375" stroke="#000" marker-end="url(#arrow)" />
55
- <line x1="600" y1="375" x2="450" y2="500" stroke="#000" marker-end="url(#arrow)" />
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