Spaces:
Sleeping
Sleeping
Update pages/Lifecycle of Machine Learning.py
Browse files
pages/Lifecycle of Machine Learning.py
CHANGED
@@ -146,4 +146,19 @@ print(df.head())
|
|
146 |
st.write("Download the [documentation notebook](path/to/csv_notebook.ipynb) or [PDF](path/to/csv_documentation.pdf).")
|
147 |
|
148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
|
|
|
146 |
st.write("Download the [documentation notebook](path/to/csv_notebook.ipynb) or [PDF](path/to/csv_documentation.pdf).")
|
147 |
|
148 |
|
149 |
+
|
150 |
+
if data_type == "UnStructured":
|
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 |
+
("TEXT","IMAGE","VIDEO", "AUDIO")
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
|