Shafeek Saleem commited on
Commit
aa539b7
·
1 Parent(s): b73615c
Files changed (1) hide show
  1. pages/3_Training the Model.py +3 -3
pages/3_Training the Model.py CHANGED
@@ -158,12 +158,12 @@ def step3_page():
158
  st.write("Now let's preprocess our dataset to handle missing values, outliers and inconsistencies and then perform feature engineering tasks to extract meaningful features from the raw data. Finally we need to separate training variables (X) and target variable (y).")
159
  # if st.button("Create Features and Target variable"):
160
  X, y = create_model_inputs(data, 288, 288)
161
- col1, col2 = st.columns([2])
162
  state = "splitting"
163
- with col1:
164
  st.subheader("Let's display the Features!")
165
  st.dataframe(X)
166
- with col2:
167
  st.subheader("Let's display our Target variable")
168
  st.dataframe(y)
169
  else:
 
158
  st.write("Now let's preprocess our dataset to handle missing values, outliers and inconsistencies and then perform feature engineering tasks to extract meaningful features from the raw data. Finally we need to separate training variables (X) and target variable (y).")
159
  # if st.button("Create Features and Target variable"):
160
  X, y = create_model_inputs(data, 288, 288)
161
+ cols = st.columns(2)
162
  state = "splitting"
163
+ with cols[0]:
164
  st.subheader("Let's display the Features!")
165
  st.dataframe(X)
166
+ with cols[2]:
167
  st.subheader("Let's display our Target variable")
168
  st.dataframe(y)
169
  else: