Michael Rey
commited on
Commit
·
4a3b9c0
1
Parent(s):
fc29f39
modified app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,6 @@ from sklearn.preprocessing import StandardScaler
|
|
8 |
from sklearn.linear_model import LogisticRegression
|
9 |
from sklearn.metrics import accuracy_score, classification_report, confusion_matrix
|
10 |
|
11 |
-
# Custom Streamlit styling - Dark mode version
|
12 |
st.markdown(
|
13 |
"""
|
14 |
<style>
|
@@ -25,16 +24,10 @@ st.markdown(
|
|
25 |
font-size: 16px;
|
26 |
font-weight: bold;
|
27 |
}
|
28 |
-
# .stSlider>div>div>div {
|
29 |
-
# background-color: #4A90E2;
|
30 |
-
}
|
31 |
.title {
|
32 |
color: #64FFDA;
|
33 |
text-shadow: 1px 1px #FF4C4C;
|
34 |
}
|
35 |
-
# .stSlider label, .stSlider>div>div>span {
|
36 |
-
# color: #FFFFFF !important;
|
37 |
-
}
|
38 |
</style>
|
39 |
""",
|
40 |
unsafe_allow_html=True
|
|
|
8 |
from sklearn.linear_model import LogisticRegression
|
9 |
from sklearn.metrics import accuracy_score, classification_report, confusion_matrix
|
10 |
|
|
|
11 |
st.markdown(
|
12 |
"""
|
13 |
<style>
|
|
|
24 |
font-size: 16px;
|
25 |
font-weight: bold;
|
26 |
}
|
|
|
|
|
|
|
27 |
.title {
|
28 |
color: #64FFDA;
|
29 |
text-shadow: 1px 1px #FF4C4C;
|
30 |
}
|
|
|
|
|
|
|
31 |
</style>
|
32 |
""",
|
33 |
unsafe_allow_html=True
|