cnasa commited on
Commit
c48cbfe
1 Parent(s): 2c84cd8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -223,7 +223,7 @@ def plot_proba(dframe):
223
 
224
 
225
 
226
- # Create Web App
227
  st.title("Machine Learning Demo :")
228
  st.header("Prédiction de la santé d'un patient concernant le diabète")
229
 
@@ -318,12 +318,12 @@ pred_class = str(target_names[int(pred)])
318
 
319
 
320
 
321
- st.subheader("Prédiction associée à l'échantillon :")
322
- st.write(f"La classe prédite est : ----->> {pred_class}")
323
-
324
- pred_proba = model.predict_proba(user_df_prepared)
325
- df_pred_proba = pd.DataFrame(pred_proba,columns=target_names)
326
- st.subheader("Probabilités de prédire chaque classe selon l'échantillon :")
327
-
328
-
329
- plot_proba(df_pred_proba)
 
223
 
224
 
225
 
226
+ # Create Web App
227
  st.title("Machine Learning Demo :")
228
  st.header("Prédiction de la santé d'un patient concernant le diabète")
229
 
 
318
 
319
 
320
 
321
+ st.subheader("Prédiction associée à l'échantillon :")
322
+ st.write(f"La classe prédite est : ----->> {pred_class}")
323
+
324
+ pred_proba = model.predict_proba(user_df_prepared)
325
+ df_pred_proba = pd.DataFrame(pred_proba,columns=target_names)
326
+ st.subheader("Probabilités de prédire chaque classe selon l'échantillon :")
327
+
328
+ st.write(df_pred_proba)
329
+ plot_proba(df_pred_proba)