Update pages/LIFE_CYCLE_OF_MACHINE_LEARNING.py
Browse files
pages/LIFE_CYCLE_OF_MACHINE_LEARNING.py
CHANGED
@@ -126,13 +126,17 @@ print(excel_file.sheet_names)
|
|
126 |
""", language='python')
|
127 |
|
128 |
# Download button for a sample Jupyter notebook
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
with open("excel_handling_guide.ipynb", "rb") as file:
|
130 |
-
st.download_button(
|
131 |
-
label="Download Jupyter Notebook",
|
132 |
-
data = file,
|
133 |
-
file_name="excel_handling_guide.ipynb",
|
134 |
-
mime="application/octet-stream"
|
135 |
-
)
|
136 |
|
137 |
if st.button("Back to Structured Data"):
|
138 |
st.session_state.page = "structured_data"
|
|
|
126 |
""", language='python')
|
127 |
|
128 |
# Download button for a sample Jupyter notebook
|
129 |
+
# with open("excel_handling_guide.ipynb", "rb") as file:
|
130 |
+
# st.download_button(
|
131 |
+
# label="Download Jupyter Notebook",
|
132 |
+
# data = file,
|
133 |
+
# file_name="excel_handling_guide.ipynb",
|
134 |
+
# mime="application/octet-stream"
|
135 |
+
#
|
136 |
+
|
137 |
+
#test
|
138 |
with open("excel_handling_guide.ipynb", "rb") as file:
|
139 |
+
st.download_button("Download Jupyter Notebook",file)
|
|
|
|
|
|
|
|
|
|
|
140 |
|
141 |
if st.button("Back to Structured Data"):
|
142 |
st.session_state.page = "structured_data"
|