Spaces:
Sleeping
Sleeping
Update pages/Lifecycle of Machine Learning.py
Browse files
pages/Lifecycle of Machine Learning.py
CHANGED
@@ -147,17 +147,21 @@ print(df.head())
|
|
147 |
|
148 |
|
149 |
|
150 |
-
|
|
|
151 |
st.subheader("UnStructured Data")
|
|
|
152 |
st.write(
|
153 |
"Unstructured data refers to information that lacks a predefined format or organization, making it challenging to analyze using traditional tools."
|
154 |
"Examples include text, images, videos, audio, and social media posts."
|
155 |
)
|
|
|
156 |
st.write("Data Formats:")
|
157 |
format_selected = st.radio(
|
158 |
"Select a format to explore further:",
|
159 |
("IMAGE","VIDEO", "AUDIO")
|
160 |
)
|
|
|
161 |
#HOW TO READ TEXT
|
162 |
if format_selected == "IMAGE":
|
163 |
|
|
|
147 |
|
148 |
|
149 |
|
150 |
+
elif data_type == "UnStructured":
|
151 |
+
|
152 |
st.subheader("UnStructured Data")
|
153 |
+
|
154 |
st.write(
|
155 |
"Unstructured data refers to information that lacks a predefined format or organization, making it challenging to analyze using traditional tools."
|
156 |
"Examples include text, images, videos, audio, and social media posts."
|
157 |
)
|
158 |
+
|
159 |
st.write("Data Formats:")
|
160 |
format_selected = st.radio(
|
161 |
"Select a format to explore further:",
|
162 |
("IMAGE","VIDEO", "AUDIO")
|
163 |
)
|
164 |
+
|
165 |
#HOW TO READ TEXT
|
166 |
if format_selected == "IMAGE":
|
167 |
|