Spaces:
Sleeping
Sleeping
Update pages/3_Life cycle of ML.py
Browse files
pages/3_Life cycle of ML.py
CHANGED
|
@@ -65,15 +65,16 @@ import webbrowser
|
|
| 65 |
def data_collection_page():
|
| 66 |
st.write("### What is Data?")
|
| 67 |
st.write("""
|
| 68 |
-
Data
|
| 69 |
-
It can be
|
|
|
|
| 70 |
""")
|
| 71 |
|
| 72 |
st.write("### Types of Data")
|
| 73 |
st.write("""
|
| 74 |
-
1. **Structured Data**: Organized data that follows a
|
| 75 |
-
2. **Unstructured Data**: Data that doesn't follow a predefined model (e.g., images, text).
|
| 76 |
-
3. **Semi-Structured Data**: Data that has some organizational properties but isn't fully structured (e.g., JSON, XML).
|
| 77 |
""")
|
| 78 |
|
| 79 |
selected_data_type = st.radio("Choose Data Type", ["Structured Data", "Unstructured Data", "Semi-Structured Data"])
|
|
|
|
| 65 |
def data_collection_page():
|
| 66 |
st.write("### What is Data?")
|
| 67 |
st.write("""
|
| 68 |
+
Data is a collection of facts, numbers, words, or observations that can be used to learn about something.
|
| 69 |
+
It can be raw and unprocessed
|
| 70 |
+
It can be structured or unstructured and comes from various sources.
|
| 71 |
""")
|
| 72 |
|
| 73 |
st.write("### Types of Data")
|
| 74 |
st.write("""
|
| 75 |
+
1. **Structured Data**: Organized data that follows a schema (e.g., rows and columns, sql).
|
| 76 |
+
2. **Unstructured Data**: Data that doesn't follow a predefined model (e.g., images, text, audio and video).
|
| 77 |
+
3. **Semi-Structured Data**: Data that has some organizational properties but isn't fully structured (e.g., JSON, XML, CSV,HTML).
|
| 78 |
""")
|
| 79 |
|
| 80 |
selected_data_type = st.radio("Choose Data Type", ["Structured Data", "Unstructured Data", "Semi-Structured Data"])
|