ArturG9 commited on
Commit
17605ef
1 Parent(s): c78a11a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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?", ("Model information", "Stroke prediction","Information about training data"))
19
  st.title(option)
20
 
21
  def get_pred():
@@ -144,5 +144,5 @@ if option == "Model information":
144
  st.image(r'Roc_Curve.png')
145
 
146
 
147
- st.markdown("###Model from 28 stroke cases in a test set, identified bad 1 case**")
148
  st.markdown("### 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**")
 
15
  encoder = joblib.load("encoder.joblib")
16
 
17
 
18
+ option = st.sidebar.selectbox("Which dashboard?", ("Information about training data", "Model information", "Stroke prediction"))
19
  st.title(option)
20
 
21
  def get_pred():
 
144
  st.image(r'Roc_Curve.png')
145
 
146
 
147
+ st.markdown("### Model from 28 stroke cases in a test set, identified bad 1 case**")
148
  st.markdown("### 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**")