Spaces:
Sleeping
Sleeping
Sathwikchowdary
commited on
Update pages/Life_cycle_of_ML.py
Browse files- pages/Life_cycle_of_ML.py +10 -10
pages/Life_cycle_of_ML.py
CHANGED
@@ -7,63 +7,63 @@ if "step" not in st.session_state:
|
|
7 |
# Define ML lifecycle steps with detailed descriptions
|
8 |
ml_lifecycle = [
|
9 |
{
|
10 |
-
"title": "
|
11 |
"description": """
|
12 |
**Info**:
|
13 |
Understand the challenge at hand, establish clear objectives, and set criteria for success.
|
14 |
"""
|
15 |
},
|
16 |
{
|
17 |
-
"title": "
|
18 |
"description": """
|
19 |
**Info**: Gather relevant data to train the model, utilizing sources such as surveys, web scraping, and APIs.
|
20 |
|
21 |
"""
|
22 |
},
|
23 |
{
|
24 |
-
"title": "
|
25 |
"description": """
|
26 |
**Info**: Perform a preliminary analysis to examine the dataset’s key features.
|
27 |
"""
|
28 |
},
|
29 |
{
|
30 |
-
"title": "
|
31 |
"description": """
|
32 |
**Info**: Clean the data to make sure it is in an appropriate format for further analysis.
|
33 |
"""
|
34 |
},
|
35 |
{
|
36 |
-
"title": "
|
37 |
"description": """
|
38 |
**Info**:Conduct deeper analysis to extract valuable insights and uncover patterns within the data.
|
39 |
"""
|
40 |
},
|
41 |
{
|
42 |
-
"title": "
|
43 |
"description": """
|
44 |
**Info**: Develop new features or refine existing ones to enhance the model’s performance.
|
45 |
"""
|
46 |
},
|
47 |
{
|
48 |
-
"title": "
|
49 |
"description": """
|
50 |
**Info**:Train machine learning models using the preprocessed data.
|
51 |
"""
|
52 |
},
|
53 |
{
|
54 |
-
"title": "
|
55 |
"description": """
|
56 |
**Info**:Assess the model’s performance using a separate test dataset to determine its effectiveness.
|
57 |
"""
|
58 |
},
|
59 |
{
|
60 |
-
"title": "
|
61 |
"description": """
|
62 |
**Info**:Deploy the trained model into a production environment for real-world use.
|
63 |
"""
|
64 |
},
|
65 |
{
|
66 |
-
"title": "
|
67 |
"description": """
|
68 |
**Info**:Continuously track the model’s performance in production to ensure it remains effective over time
|
69 |
"""
|
|
|
7 |
# Define ML lifecycle steps with detailed descriptions
|
8 |
ml_lifecycle = [
|
9 |
{
|
10 |
+
"title": "📋 **Problem Statement**",
|
11 |
"description": """
|
12 |
**Info**:
|
13 |
Understand the challenge at hand, establish clear objectives, and set criteria for success.
|
14 |
"""
|
15 |
},
|
16 |
{
|
17 |
+
"title": "🧑💻 **Data Collection**",
|
18 |
"description": """
|
19 |
**Info**: Gather relevant data to train the model, utilizing sources such as surveys, web scraping, and APIs.
|
20 |
|
21 |
"""
|
22 |
},
|
23 |
{
|
24 |
+
"title": "🔍**Simple EDA**",
|
25 |
"description": """
|
26 |
**Info**: Perform a preliminary analysis to examine the dataset’s key features.
|
27 |
"""
|
28 |
},
|
29 |
{
|
30 |
+
"title": "🧹 **Data Preprocessing**",
|
31 |
"description": """
|
32 |
**Info**: Clean the data to make sure it is in an appropriate format for further analysis.
|
33 |
"""
|
34 |
},
|
35 |
{
|
36 |
+
"title": "🔎 **EDA**",
|
37 |
"description": """
|
38 |
**Info**:Conduct deeper analysis to extract valuable insights and uncover patterns within the data.
|
39 |
"""
|
40 |
},
|
41 |
{
|
42 |
+
"title": "🔧 **Feature Engineering**",
|
43 |
"description": """
|
44 |
**Info**: Develop new features or refine existing ones to enhance the model’s performance.
|
45 |
"""
|
46 |
},
|
47 |
{
|
48 |
+
"title": "🛠️ **Training**",
|
49 |
"description": """
|
50 |
**Info**:Train machine learning models using the preprocessed data.
|
51 |
"""
|
52 |
},
|
53 |
{
|
54 |
+
"title": "🧪 **Testing**",
|
55 |
"description": """
|
56 |
**Info**:Assess the model’s performance using a separate test dataset to determine its effectiveness.
|
57 |
"""
|
58 |
},
|
59 |
{
|
60 |
+
"title": "🚀 **Deploying**",
|
61 |
"description": """
|
62 |
**Info**:Deploy the trained model into a production environment for real-world use.
|
63 |
"""
|
64 |
},
|
65 |
{
|
66 |
+
"title": "📊 **Monitoring**",
|
67 |
"description": """
|
68 |
**Info**:Continuously track the model’s performance in production to ensure it remains effective over time
|
69 |
"""
|