Update app.py
Browse files
app.py
CHANGED
@@ -68,7 +68,7 @@ st.markdown("<div class='content'>6. Each data point should have an equal probab
|
|
68 |
|
69 |
# Navigation Buttons
|
70 |
st.markdown("<br><br>", unsafe_allow_html=True)
|
71 |
-
col1, col2, col3 = st.columns(
|
72 |
|
73 |
with col1:
|
74 |
if st.button("KNN Algorithm"):
|
@@ -80,4 +80,8 @@ with col2:
|
|
80 |
|
81 |
with col3:
|
82 |
if st.button("Ensemble Techniques"):
|
83 |
-
st.switch_page("pages/
|
|
|
|
|
|
|
|
|
|
68 |
|
69 |
# Navigation Buttons
|
70 |
st.markdown("<br><br>", unsafe_allow_html=True)
|
71 |
+
col1, col2, col3, col4 = st.columns(4)
|
72 |
|
73 |
with col1:
|
74 |
if st.button("KNN Algorithm"):
|
|
|
80 |
|
81 |
with col3:
|
82 |
if st.button("Ensemble Techniques"):
|
83 |
+
st.switch_page("pages/3Ensemble_Techniques.py")
|
84 |
+
|
85 |
+
with col4:
|
86 |
+
if st.button("Logistic Regression"):
|
87 |
+
st.switch_page(""pages/4Logistic_Regression.py"")
|