Update pages/3_Life Cycle Of ML Project.py
Browse files
pages/3_Life Cycle Of ML Project.py
CHANGED
|
@@ -116,11 +116,11 @@ print(excel_file.sheet_names)
|
|
| 116 |
""", language='python')
|
| 117 |
|
| 118 |
# Download button for a sample Jupyter notebook
|
| 119 |
-
with open("
|
| 120 |
st.download_button(
|
| 121 |
label="Download Jupyter Notebook",
|
| 122 |
data=file,
|
| 123 |
-
file_name="
|
| 124 |
mime="application/octet-stream"
|
| 125 |
)
|
| 126 |
|
|
|
|
| 116 |
""", language='python')
|
| 117 |
|
| 118 |
# Download button for a sample Jupyter notebook
|
| 119 |
+
with open("excel_handling_guide.ipynb","rb") as file:
|
| 120 |
st.download_button(
|
| 121 |
label="Download Jupyter Notebook",
|
| 122 |
data=file,
|
| 123 |
+
file_name="excel_handling_guide.ipynb"
|
| 124 |
mime="application/octet-stream"
|
| 125 |
)
|
| 126 |
|