sree4411 commited on
Commit
19570a0
Β·
verified Β·
1 Parent(s): d6ec1ab

Update pages/3_Life Cycle Of ML Project.py

Browse files
Files changed (1) hide show
  1. pages/3_Life Cycle Of ML Project.py +20 -8
pages/3_Life Cycle Of ML Project.py CHANGED
@@ -38,13 +38,25 @@ elif st.session_state.page == "data_collection":
38
  st.title("Data Collection")
39
  st.markdown("### Data Collection\nThis page discusses the process of Data Collection.")
40
  st.markdown("Types of Data: Structured, Unstructured, Semi-Structured")
41
- if st.button(":blue[🌟 Structured Data]"):
42
- st.markdown("### Structured Data\nIdentify the problem you want to solve and set clear objectives and success criteria.")
43
- if st.button(":blue[🌟 Unstructured Data]"):
44
- st.markdown("### Unstructured Data\nIdentify the problem you want to solve and set clear objectives and success criteria.")
45
- if st.button(":blue[🌟 Semi-Structured]"):
46
- st.markdown("### Semi-Structured Data\nIdentify the problem you want to solve and set clear objectives and success criteria.")
 
 
 
 
 
 
 
 
 
 
 
 
47
 
48
  # Button to go back to home page
49
- if st.button("Back to Home"):
50
- st.session_state.page = "home" # Go back to the home page
 
38
  st.title("Data Collection")
39
  st.markdown("### Data Collection\nThis page discusses the process of Data Collection.")
40
  st.markdown("Types of Data: Structured, Unstructured, Semi-Structured")
41
+
42
+ # Button for Structured Data
43
+ if st.button(":blue[🌟 Structured Data]"):
44
+ st.markdown("### Structured Data\nStructured data is highly organized and typically stored in tables like spreadsheets or databases. It is easy to search and analyze.")
45
+ st.markdown("Examples: Excel files, CSV files")
46
+ # Add specific content related to Structured Data (e.g., file handling, processing, etc.)
47
+
48
+ # Button for Unstructured Data
49
+ if st.button(":blue[🌟 Unstructured Data]"):
50
+ st.markdown("### Unstructured Data\nUnstructured data does not have a predefined format and is often text-heavy, like emails, videos, or social media posts.")
51
+ st.markdown("Examples: Text files, images, video files")
52
+ # Add specific content related to Unstructured Data (e.g., natural language processing, handling images, etc.)
53
+
54
+ # Button for Semi-Structured Data
55
+ if st.button(":blue[🌟 Semi-Structured Data]"):
56
+ st.markdown("### Semi-Structured Data\nSemi-structured data does not conform to a rigid structure but still has some organizational properties, often in the form of tags or markers.")
57
+ st.markdown("Examples: JSON, XML files")
58
+ # Add specific content related to Semi-Structured Data (e.g., parsing JSON, XML handling, etc.)
59
 
60
  # Button to go back to home page
61
+ if st.button("Back to Home"):
62
+ st.session_state.page = "home" # Go back to the home page