singhn9 commited on
Commit
02d78e4
·
verified ·
1 Parent(s): 85836c8

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -4
src/streamlit_app.py CHANGED
@@ -535,10 +535,7 @@ with tabs[4]:
535
  y = pd.Series(np.ravel(sub_df[target_col]), name=target_col)
536
 
537
 
538
- # Construct X and y
539
- X = sub_df.drop(columns=[target_col])
540
- y = sub_df[target_col]
541
- y = pd.Series(np.ravel(y), name=target_col)
542
 
543
 
544
 
 
535
  y = pd.Series(np.ravel(sub_df[target_col]), name=target_col)
536
 
537
 
538
+
 
 
 
539
 
540
 
541