Update pages/LIFE_CYCLE_OF_MACHINE_LEARNING.py
Browse files
pages/LIFE_CYCLE_OF_MACHINE_LEARNING.py
CHANGED
@@ -126,11 +126,11 @@ 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 = excel_handling_guide.ipynb,
|
133 |
-
file_name="excel_handling_guide.ipynb",
|
134 |
mime="application/octet-stream"
|
135 |
)
|
136 |
|
|
|
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 = excel_handling_guide.ipynb,
|
133 |
+
file_name="../excel_handling_guide.ipynb",
|
134 |
mime="application/octet-stream"
|
135 |
)
|
136 |
|