Spaces:
Sleeping
Sleeping
Shafeek Saleem
commited on
Commit
·
38d6054
1
Parent(s):
66b198b
ss
Browse files
pages/3_Training the Model.py
CHANGED
@@ -166,7 +166,7 @@ def step3_page():
|
|
166 |
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).")
|
167 |
st.info("You can select the weather attribute that you want to forecast (WindSpeed/ Humidity/ Pressure/ Temperature) and the time of the forecast (9am tomorrow/ 3pm tomorrow)")
|
168 |
|
169 |
-
attributes = ['
|
170 |
attribute = st.selectbox('Select the Weather Attribute', attributes)
|
171 |
|
172 |
times = ['9am', '3pm']
|
|
|
166 |
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).")
|
167 |
st.info("You can select the weather attribute that you want to forecast (WindSpeed/ Humidity/ Pressure/ Temperature) and the time of the forecast (9am tomorrow/ 3pm tomorrow)")
|
168 |
|
169 |
+
attributes = ['Temp', 'WindSpeed', 'Humidity', 'Pressure']
|
170 |
attribute = st.selectbox('Select the Weather Attribute', attributes)
|
171 |
|
172 |
times = ['9am', '3pm']
|