DeepSoft-Tech commited on
Commit
be4c96a
·
verified ·
1 Parent(s): b1d2cd9

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +3 -3
src/streamlit_app.py CHANGED
@@ -50,9 +50,9 @@ if menu == "Train Model":
50
  y = data[target_column]
51
 
52
 
53
- X = data.drop('Response', axis = 1)
54
- # output labels
55
- y = data['Response']
56
 
57
  agree = st.checkbox("Continue Training")
58
  if agree:
 
50
  y = data[target_column]
51
 
52
 
53
+ # X = data.drop('Response', axis = 1)
54
+ # # output labels
55
+ # y = data['Response']
56
 
57
  agree = st.checkbox("Continue Training")
58
  if agree: