Spaces:
Sleeping
Sleeping
Update pages/KNN.py
Browse files- pages/KNN.py +0 -17
pages/KNN.py
CHANGED
|
@@ -2,23 +2,6 @@ import streamlit as st
|
|
| 2 |
|
| 3 |
st.set_page_config(page_title="KNN Algorithm", page_icon="📍", layout="wide")
|
| 4 |
|
| 5 |
-
# Custom Styles
|
| 6 |
-
st.markdown("""
|
| 7 |
-
<style>
|
| 8 |
-
.stApp {
|
| 9 |
-
background-color: #edf6ff;
|
| 10 |
-
}
|
| 11 |
-
h1, h2, h3 {
|
| 12 |
-
color: #0a2f5c;
|
| 13 |
-
}
|
| 14 |
-
.custom-font, p {
|
| 15 |
-
font-family: 'Arial', sans-serif;
|
| 16 |
-
font-size: 17px;
|
| 17 |
-
color: #111;
|
| 18 |
-
line-height: 1.7;
|
| 19 |
-
}
|
| 20 |
-
</style>
|
| 21 |
-
""", unsafe_allow_html=True)
|
| 22 |
|
| 23 |
# Page Title
|
| 24 |
st.markdown("<h1>K-Nearest Neighbors (KNN)</h1>", unsafe_allow_html=True)
|
|
|
|
| 2 |
|
| 3 |
st.set_page_config(page_title="KNN Algorithm", page_icon="📍", layout="wide")
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
# Page Title
|
| 7 |
st.markdown("<h1>K-Nearest Neighbors (KNN)</h1>", unsafe_allow_html=True)
|