Update pages/3_Life Cycle Of ML Project.py
Browse files
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 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
st.markdown("###
|
| 45 |
-
|
| 46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
|
| 48 |
# Button to go back to home page
|
| 49 |
-
if st.button("Back to Home"):
|
| 50 |
-
|
|
|
|
| 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
|