Update pages/LIFE_CYCLE_OF_MACHINE_LEARNING.py
Browse files
pages/LIFE_CYCLE_OF_MACHINE_LEARNING.py
CHANGED
@@ -80,18 +80,19 @@ def structured_data_page():
|
|
80 |
""")
|
81 |
st.markdown("### Examples: Excel files, CSV files, JSON files")
|
82 |
|
83 |
-
if st.button(":green[
|
84 |
st.session_state.page = "excel"
|
85 |
|
86 |
-
if st.button(":green[
|
87 |
st.session_state.page = "csv"
|
88 |
|
89 |
-
if st.button(":green[
|
90 |
st.session_state.page = "json"
|
91 |
|
92 |
if st.button("Back to Data Collection"):
|
93 |
st.session_state.page = "data_collection"
|
94 |
|
|
|
95 |
# ----------------- Excel Data Page -----------------
|
96 |
def excel_page():
|
97 |
st.title(":green[Excel Data Format]")
|
|
|
80 |
""")
|
81 |
st.markdown("### Examples: Excel files, CSV files, JSON files")
|
82 |
|
83 |
+
if st.button(":green[📊 Excel]"):
|
84 |
st.session_state.page = "excel"
|
85 |
|
86 |
+
if st.button(":green[📄 CSV]"):
|
87 |
st.session_state.page = "csv"
|
88 |
|
89 |
+
if st.button(":green[🗃️ JSON]"):
|
90 |
st.session_state.page = "json"
|
91 |
|
92 |
if st.button("Back to Data Collection"):
|
93 |
st.session_state.page = "data_collection"
|
94 |
|
95 |
+
|
96 |
# ----------------- Excel Data Page -----------------
|
97 |
def excel_page():
|
98 |
st.title(":green[Excel Data Format]")
|