Spaces:
Sleeping
Sleeping
Update pages/Lifecycle of Machine Learning.py
Browse files
pages/Lifecycle of Machine Learning.py
CHANGED
@@ -3,44 +3,42 @@ import streamlit as st
|
|
3 |
# HTML and CSS code for a simple mind map
|
4 |
html_code = """
|
5 |
<div style="display: flex; justify-content: center; margin-top: 20px;">
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
</div>
|
43 |
-
</div>
|
44 |
</div>
|
45 |
"""
|
46 |
|
|
|
3 |
# HTML and CSS code for a simple mind map
|
4 |
html_code = """
|
5 |
<div style="display: flex; justify-content: center; margin-top: 20px;">
|
6 |
+
<div style="text-align: center;">
|
7 |
+
<!-- Root Node -->
|
8 |
+
<div style="background-color: #4CAF50; color: white; padding: 10px 20px; border-radius: 10px; margin-bottom: 20px;">
|
9 |
+
Data Science
|
10 |
+
</div>
|
11 |
+
<div style="display: flex; justify-content: space-around;">
|
12 |
+
<!-- First Branch -->
|
13 |
+
<div style="text-align: center; margin-right: 50px;">
|
14 |
+
<div style="background-color: #f44336; color: white; padding: 10px 20px; border-radius: 10px;">
|
15 |
+
Machine Learning
|
16 |
+
</div>
|
17 |
+
<div style="margin-top: 20px;">
|
18 |
+
<div style="background-color: #e91e63; color: white; padding: 10px 20px; border-radius: 10px; margin-top: 10px;">
|
19 |
+
Supervised
|
20 |
+
</div>
|
21 |
+
<div style="background-color: #e91e63; color: white; padding: 10px 20px; border-radius: 10px; margin-top: 10px;">
|
22 |
+
Unsupervised
|
23 |
+
</div>
|
24 |
+
</div>
|
25 |
+
</div>
|
26 |
+
<!-- Second Branch -->
|
27 |
+
<div style="text-align: center; margin-left: 50px;">
|
28 |
+
<div style="background-color: #2196F3; color: white; padding: 10px 20px; border-radius: 10px;">
|
29 |
+
Deep Learning
|
30 |
+
</div>
|
31 |
+
<div style="margin-top: 20px;">
|
32 |
+
<div style="background-color: #03A9F4; color: white; padding: 10px 20px; border-radius: 10px; margin-top: 10px;">
|
33 |
+
CNN
|
34 |
+
</div>
|
35 |
+
<div style="background-color: #03A9F4; color: white; padding: 10px 20px; border-radius: 10px; margin-top: 10px;">
|
36 |
+
RNN
|
37 |
+
</div>
|
38 |
+
</div>
|
39 |
+
</div>
|
40 |
+
</div>
|
41 |
+
</div>
|
|
|
|
|
42 |
</div>
|
43 |
"""
|
44 |
|