Spaces:
Sleeping
Sleeping
File size: 9,418 Bytes
b5c411b 000f968 b5c411b 000f968 b5c411b d46c9be b5c411b 1d1d538 b5c411b 8d2b3e8 b5c411b 1d1d538 b5c411b 1d1d538 b5c411b 1d1d538 b5c411b 1d1d538 b5c411b 1d1d538 b5c411b 1d1d538 b5c411b 653af31 d46c9be 2bb264f 568f85c ca586de 568f85c 17592c4 1d1d538 d46c9be 1d1d538 b5c411b 1d1d538 920c36e 1d1d538 920c36e 1d1d538 920c36e 1d1d538 920c36e 1d1d538 920c36e 1d1d538 920c36e 1d1d538 920c36e e8a91e6 000f968 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | # Loading packages
import datetime
import joblib
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import warnings
import hopsworks
import streamlit as st
import json
import os
import seaborn as sns
import time
import random
# Configuring the web page and setting the page title and icon
st.set_page_config(
page_title='Parking Occupacy Detection System',
page_icon='🅿️',
initial_sidebar_state='expanded')
# Ignoring filtering warnings
warnings.filterwarnings("ignore")
# Setting the title and adding text
st.title('Parking Occupancy Detection System')
# Defining functions
def fill_nan_with_zero(value):
if pd.isna(value):
return 0
else:
return value
# Creating tabs for the different features of the application
tab1,tab2 = st.tabs(['Parking place near Building', 'Parking place near Bikelane'])
with tab1:
# Logging in to Hopsworks and loading the feature store
project = hopsworks.login(project = "annikaij", api_key_value=os.environ['HOPSWORKS_API_KEY'])
fs = project.get_feature_store()
st.subheader("Parking place near building:")
# Function to load the building models
@st.cache_data()
def get_building_mag_model(project=project):
mr = project.get_model_registry()
building_mag_model = mr.get_model("building_mag_hist_model", version = 2)
building_mag_model_dir = building_mag_model.download()
return joblib.load(building_mag_model_dir + "/building_mag_hist_model.pkl")
# Retrieving model
building_mag_hist_model = get_building_mag_model()
@st.cache_data()
def get_building_rad_model(project=project):
mr = project.get_model_registry()
building_rad_model = mr.get_model("building_rad_hist_model", version = 2)
building_rad_model_dir = building_rad_model.download()
return joblib.load(building_rad_model_dir + "/building_rad_hist_model.pkl")
# Retrieving model
building_rad_hist_model = get_building_rad_model()
# Loading the feature group with latest data for building
new_building_fg = fs.get_feature_group(name = 'new_building_fg', version = 1)
# Function to loading the feature group with latest data for building as a dataset
@st.cache_data()
def retrieve_building(feature_group=new_building_fg):
new_building_fg = feature_group.select_all()
df_building_new = new_building_fg.read(read_options={"use_hive": True})
return df_building_new
col1, col2 = st.columns(2)
with col1:
# Retrieving building data
building_new = retrieve_building()
# Making the predictions and getting the latest data for magnetic field data
building_mag_prediction_data = building_new[['time', 'x', 'y', 'z', 'temperature', 'et0_fao_evapotranspiration']]
building_mag_prediction_data['et0_fao_evapotranspiration'] = building_mag_prediction_data['et0_fao_evapotranspiration'].apply(fill_nan_with_zero)
building_mag_most_recent_prediction = building_mag_prediction_data[['x', 'y', 'z', 'temperature', 'et0_fao_evapotranspiration']]
building_mag_most_recent_prediction = building_mag_hist_model.predict(building_mag_most_recent_prediction)
building_mag_prediction_data['Status'] = building_mag_most_recent_prediction
building_mag_prediction_data['Status'].replace(['detection', 'no_detection'], ['Vehicle detected', 'No vehicle detected'], inplace=True)
building_mag_prediction_data = building_mag_prediction_data.rename(columns={'time': 'Time'})
building_mag_prediction_data = building_mag_prediction_data.set_index(['Time'])
st.dataframe(building_mag_prediction_data[['Status']].tail(3))
with col2:
# Making the predictions and getting the latest data for radar data
building_rad_prediction_data = building_new[['time', 'radar_0', 'radar_1', 'radar_2', 'radar_3', 'radar_4', 'radar_5', 'radar_6', 'radar_7', 'temperature', 'et0_fao_evapotranspiration']]
building_rad_prediction_data['et0_fao_evapotranspiration'] = building_rad_prediction_data['et0_fao_evapotranspiration'].apply(fill_nan_with_zero)
building_rad_most_recent_prediction = building_rad_prediction_data[['radar_0', 'radar_1', 'radar_2', 'radar_3', 'radar_4', 'radar_5', 'radar_6', 'radar_7', 'temperature', 'et0_fao_evapotranspiration']]
building_rad_most_recent_prediction = building_rad_hist_model.predict(building_rad_most_recent_prediction)
building_rad_prediction_data['Status'] = building_rad_most_recent_prediction
building_rad_prediction_data['Status'].replace(['detection', 'no_detection'], ['Vehicle detected', 'No vehicle detected'], inplace=True)
building_rad_prediction_data = building_rad_prediction_data.rename(columns={'time': 'Time'})
building_rad_prediction_data = building_rad_prediction_data.set_index(['Time'])
st.dataframe(building_rad_prediction_data[['Status']].tail(3))
# Update button
if st.button("Update application"):
# Clear cached data
st.cache_data.clear()
# Immediately rerun the application
st.experimental_rerun()
with tab2:
st.subheader("Parking place near bikelane:")
# Function to load the bikelane models
@st.cache_data()
def get_bikelane_mag_model(project=project):
mr = project.get_model_registry()
bikelane_mag_model = mr.get_model("bikelane_mag_hist_model", version = 2)
bikelane_mag_model_dir = bikelane_mag_model.download()
return joblib.load(bikelane_mag_model_dir + "/bikelane_mag_hist_model.pkl")
# Retrieving model
bikelane_mag_hist_model = get_bikelane_mag_model()
@st.cache_data()
def get_bikelane_rad_model(project=project):
mr = project.get_model_registry()
bikelane_rad_model = mr.get_model("bikelane_rad_hist_model", version = 2)
bikelane_rad_model_dir = bikelane_rad_model.download()
return joblib.load(bikelane_rad_model_dir + "/bikelane_rad_hist_model.pkl")
# Retrieving model
bikelane_rad_hist_model = get_bikelane_rad_model()
# Loading the feature group with latest data for bikelane
new_bikelane_fg = fs.get_feature_group(name = 'new_bikelane_fg', version = 1)
# Function to loading the feature group with latest data for bikelane as a dataset
@st.cache_data()
def retrieve_bikelane(feature_group=new_bikelane_fg):
new_bikelane_fg = feature_group.select_all()
df_bikelane_new = new_bikelane_fg.read(read_options={"use_hive": True})
return df_bikelane_new
# Retrieving bikelane data
bikelane_new = retrieve_bikelane()
col1, col2 = st.columns(2)
with col1:
# Making the predictions and getting the latest data for magnetic field data
bikelane_mag_prediction_data = bikelane_new[['time', 'x', 'y', 'z', 'temperature', 'et0_fao_evapotranspiration']]
bikelane_mag_prediction_data['et0_fao_evapotranspiration'] = bikelane_mag_prediction_data['et0_fao_evapotranspiration'].apply(fill_nan_with_zero)
bikelane_mag_most_recent_prediction = bikelane_mag_prediction_data[['x', 'y', 'z', 'temperature', 'et0_fao_evapotranspiration']]
bikelane_mag_most_recent_prediction = bikelane_mag_hist_model.predict(bikelane_mag_most_recent_prediction)
bikelane_mag_prediction_data['Status'] = bikelane_mag_most_recent_prediction
bikelane_mag_prediction_data['Status'].replace(['detection', 'no_detection'], ['Vehicle detected', 'No vehicle detected'], inplace=True)
bikelane_mag_prediction_data = bikelane_mag_prediction_data.rename(columns={'time': 'Time'})
bikelane_mag_prediction_data = bikelane_mag_prediction_data.set_index(['Time'])
st.dataframe(bikelane_mag_prediction_data[['Status']].tail(3))
with col2:
# Making the predictions and getting the latest data for radar data
bikelane_rad_prediction_data = bikelane_new[['time', 'radar_0', 'radar_1', 'radar_2', 'radar_3', 'radar_4', 'radar_5', 'radar_6', 'radar_7', 'temperature', 'et0_fao_evapotranspiration']]
bikelane_rad_prediction_data['et0_fao_evapotranspiration'] = bikelane_rad_prediction_data['et0_fao_evapotranspiration'].apply(fill_nan_with_zero)
bikelane_rad_most_recent_prediction = bikelane_rad_prediction_data[['radar_0', 'radar_1', 'radar_2', 'radar_3', 'radar_4', 'radar_5', 'radar_6', 'radar_7', 'temperature', 'et0_fao_evapotranspiration']]
bikelane_rad_most_recent_prediction = bikelane_rad_hist_model.predict(bikelane_rad_most_recent_prediction)
bikelane_rad_prediction_data['Status'] = bikelane_rad_most_recent_prediction
bikelane_rad_prediction_data['Status'].replace(['detection', 'no_detection'], ['Vehicle detected', 'No vehicle detected'], inplace=True)
bikelane_rad_prediction_data = bikelane_rad_prediction_data.rename(columns={'time': 'Time'})
bikelane_rad_prediction_data = bikelane_rad_prediction_data.set_index(['Time'])
st.dataframe(bikelane_rad_prediction_data[['Status']].tail(3))
# Update button
if st.button("Update application"):
# Clear cached data
st.cache_data.clear()
# Immediately rerun the application
st.experimental_rerun()
|