Harika22 commited on
Commit
a8eb239
·
verified ·
1 Parent(s): ab79161

Update pages/3_Life cycle of ML.py

Browse files
Files changed (1) hide show
  1. pages/3_Life cycle of ML.py +6 -5
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 refers to raw facts and figures that are collected and stored for analysis.
69
- It can be structured or unstructured and comes from various sources like sensors, logs, transactions, and more.
 
70
  """)
71
 
72
  st.write("### Types of Data")
73
  st.write("""
74
- 1. **Structured Data**: Organized data that follows a strict schema (e.g., rows and columns).
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"])