LakshmiHarika commited on
Commit
c9226da
·
verified ·
1 Parent(s): 2ad5e11

Update pages/3Life Cycle of Machine Learning Project.py

Browse files
pages/3Life Cycle of Machine Learning Project.py CHANGED
@@ -36,44 +36,53 @@ st.markdown("""
36
  position: relative;
37
  }
38
  .circle {
39
- position: relative;
40
- width: 400px; /* Decreased size from 600px to 400px */
41
- height: 400px; /* Decreased size from 600px to 400px */
42
- border-radius: 50%;
43
- display: flex;
44
- justify-content: center;
45
- align-items: center;
46
- background: transparent;
 
 
 
 
 
 
 
 
47
  }
48
-
49
  .step {
50
- position: absolute;
51
- width: 150px; /* Decreased size from 200px to 150px */
52
- height: 60px; /* Decreased size from 80px to 60px */
53
- font-size: 16px; /* Slightly smaller font size */
54
- color: black;
55
- border-radius: 30px; /* Adjusted for smaller size */
56
- display: flex;
57
- justify-content: center;
58
- align-items: center;
59
- text-align: center;
60
- transform-origin: 50% 50%;
61
- font-weight: bold;
62
- box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
63
- background-color: rgba(255, 255, 255, 0.9);
64
- cursor: pointer;
65
- }
 
 
 
 
 
 
 
 
 
 
 
 
66
 
67
- #step1 { transform: rotate(0deg) translateX(250px) rotate(-0deg); } /* Adjusted translateX value */
68
- #step2 { transform: rotate(36deg) translateX(250px) rotate(-36deg); }
69
- #step3 { transform: rotate(72deg) translateX(250px) rotate(-72deg); }
70
- #step4 { transform: rotate(108deg) translateX(250px) rotate(-108deg); }
71
- #step5 { transform: rotate(144deg) translateX(250px) rotate(-144deg); }
72
- #step6 { transform: rotate(180deg) translateX(250px) rotate(-180deg); }
73
- #step7 { transform: rotate(216deg) translateX(250px) rotate(-216deg); }
74
- #step8 { transform: rotate(252deg) translateX(250px) rotate(-252deg); }
75
- #step9 { transform: rotate(288deg) translateX(250px) rotate(-288deg); }
76
- #step10 { transform: rotate(324deg) translateX(250px) rotate(-324deg); }
77
  # Render the title
78
  st.markdown('<h1>Life Cycle of End-to-End ML Project</h1>', unsafe_allow_html=True)
79
 
@@ -82,7 +91,7 @@ st.markdown(
82
  """
83
  <div class="description">
84
  - In this page, I will take you through the 10 crucial steps involved in the life cycle of a Machine Learning project.<br>
85
- - Each step plays a significant role in ensuring the success of the project
86
  </div>
87
  """,
88
  unsafe_allow_html=True,
@@ -108,5 +117,4 @@ st.markdown(
108
  </div>
109
  </div>
110
  """,
111
- unsafe_allow_html=True
112
- )
 
36
  position: relative;
37
  }
38
  .circle {
39
+ position: relative;
40
+ width: 400px; /* Decreased size */
41
+ height: 400px; /* Decreased size */
42
+ border-radius: 50%;
43
+ display: flex;
44
+ justify-content: center;
45
+ align-items: center;
46
+ background: transparent;
47
+ }
48
+ .steps {
49
+ position: absolute;
50
+ width: 100%;
51
+ height: 100%;
52
+ display: flex;
53
+ justify-content: center;
54
+ align-items: center;
55
  }
 
56
  .step {
57
+ position: absolute;
58
+ width: 150px; /* Decreased size */
59
+ height: 60px; /* Decreased size */
60
+ font-size: 16px; /* Slightly smaller font size */
61
+ color: black;
62
+ border-radius: 30px;
63
+ display: flex;
64
+ justify-content: center;
65
+ align-items: center;
66
+ text-align: center;
67
+ transform-origin: 50% 50%;
68
+ font-weight: bold;
69
+ box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
70
+ background-color: rgba(255, 255, 255, 0.9);
71
+ cursor: pointer;
72
+ }
73
+ #step1 { transform: rotate(0deg) translateX(250px) rotate(-0deg); background-color: #FFCCCB; } /* Light Red */
74
+ #step2 { transform: rotate(36deg) translateX(250px) rotate(-36deg); background-color: #FFD700; } /* Gold */
75
+ #step3 { transform: rotate(72deg) translateX(250px) rotate(-72deg); background-color: #90EE90; } /* Light Green */
76
+ #step4 { transform: rotate(108deg) translateX(250px) rotate(-108deg); background-color: #ADD8E6; } /* Light Blue */
77
+ #step5 { transform: rotate(144deg) translateX(250px) rotate(-144deg); background-color: #FFB6C1; } /* Light Pink */
78
+ #step6 { transform: rotate(180deg) translateX(250px) rotate(-180deg); background-color: #FFA07A; } /* Light Salmon */
79
+ #step7 { transform: rotate(216deg) translateX(250px) rotate(-216deg); background-color: #D8BFD8; } /* Thistle */
80
+ #step8 { transform: rotate(252deg) translateX(250px) rotate(-252deg); background-color: #FFFFE0; } /* Light Yellow */
81
+ #step9 { transform: rotate(288deg) translateX(250px) rotate(-288deg); background-color: #E0FFFF; } /* Light Cyan */
82
+ #step10 { transform: rotate(324deg) translateX(250px) rotate(-324deg); background-color: #F5DEB3; } /* Wheat */
83
+ </style>
84
+ """, unsafe_allow_html=True)
85
 
 
 
 
 
 
 
 
 
 
 
86
  # Render the title
87
  st.markdown('<h1>Life Cycle of End-to-End ML Project</h1>', unsafe_allow_html=True)
88
 
 
91
  """
92
  <div class="description">
93
  - In this page, I will take you through the 10 crucial steps involved in the life cycle of a Machine Learning project.<br>
94
+ - Each step plays a significant role in ensuring the success of the project.
95
  </div>
96
  """,
97
  unsafe_allow_html=True,
 
117
  </div>
118
  </div>
119
  """,
120
+ unsafe_allow_html=True)