Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ categorical_features = joblib.load("categorical_features.joblib")
|
|
15 |
encoder = joblib.load("encoder.joblib")
|
16 |
|
17 |
|
18 |
-
option = st.sidebar.selectbox("Which dashboard?", (
|
19 |
st.title(option)
|
20 |
|
21 |
def get_pred():
|
@@ -130,4 +130,4 @@ if option == "Model information":
|
|
130 |
|
131 |
|
132 |
st.subheader("**Model from 28 stroke cases in a test set, identified bad 1 case**")
|
133 |
-
st.subheader("**Model is trained for a recall, because it's better to send a person to visit other doctor, that's why model identified from 182 pacients with stroke , 154 bad,
|
|
|
15 |
encoder = joblib.load("encoder.joblib")
|
16 |
|
17 |
|
18 |
+
option = st.sidebar.selectbox("Which dashboard?", (,"Model information", "Stroke prediction","Information about training data"))
|
19 |
st.title(option)
|
20 |
|
21 |
def get_pred():
|
|
|
130 |
|
131 |
|
132 |
st.subheader("**Model from 28 stroke cases in a test set, identified bad 1 case**")
|
133 |
+
st.subheader("**Model is trained for a recall, because it's better to send a person to visit other doctor, that's why model identified from 182 pacients with stroke , 154 bad, they didin't have a stroke**")
|