Annikaijak commited on
Commit
0db2a53
·
verified ·
1 Parent(s): eefd670

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -162,8 +162,6 @@ with tab3:
162
  st.markdown('* **Model Performance:** The fifth tab explains how the underlying Machine Learning Model performs and how the predictor works.')
163
 
164
  with tab4:
165
- st.markdown('...')
166
-
167
  # Loading the feature group with historic data for building
168
  api_building_detection_features_fg = fs.get_feature_group(name = 'api_building_detection_features', version = 1)
169
 
@@ -181,6 +179,11 @@ with tab4:
181
  st.subheader("Overview of the historic building dataset")
182
  st.dataframe(building_historic.head())
183
 
 
 
 
 
 
184
  # Loading the feature group with historic data for bikelane
185
  api_bikelane_detection_features_fg = fs.get_feature_group(name = 'api_bikelane_detection_features', version = 1)
186
 
@@ -198,6 +201,8 @@ with tab4:
198
  st.subheader("Overview of the historic bikelane dataset")
199
  st.dataframe(bikelane_historic.head())
200
 
 
 
201
  # Making a countplot of the predictions
202
  #predictions = model.predict(batch_data)
203
  #df_test = batch_data.copy()
 
162
  st.markdown('* **Model Performance:** The fifth tab explains how the underlying Machine Learning Model performs and how the predictor works.')
163
 
164
  with tab4:
 
 
165
  # Loading the feature group with historic data for building
166
  api_building_detection_features_fg = fs.get_feature_group(name = 'api_building_detection_features', version = 1)
167
 
 
179
  st.subheader("Overview of the historic building dataset")
180
  st.dataframe(building_historic.head())
181
 
182
+ st.image('building_cluster.png', caption='Overview of the clusters made of the Magnetic Field Data for building')
183
+
184
+
185
+ st.divider()
186
+
187
  # Loading the feature group with historic data for bikelane
188
  api_bikelane_detection_features_fg = fs.get_feature_group(name = 'api_bikelane_detection_features', version = 1)
189
 
 
201
  st.subheader("Overview of the historic bikelane dataset")
202
  st.dataframe(bikelane_historic.head())
203
 
204
+ st.image('bikelane_cluster.png', caption='Overview of the clusters made of the Magnetic Field Data for bikelane')
205
+
206
  # Making a countplot of the predictions
207
  #predictions = model.predict(batch_data)
208
  #df_test = batch_data.copy()