Spaces:
Sleeping
Sleeping
File size: 4,682 Bytes
9726b3d ebebc7e 9726b3d ebebc7e 9726b3d ebebc7e 9726b3d bfeae76 9726b3d ebebc7e 9726b3d ebebc7e 9726b3d ebebc7e 9726b3d ebebc7e 9726b3d ebebc7e 9726b3d ebebc7e 7cb8d75 ebebc7e 9726b3d ebebc7e |
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 |
import streamlit as st
import numpy as np
import pandas as pd
import time
from sodapy import Socrata
from model import predict, encode
if 'sample_data' not in st.session_state:
client = Socrata("data.cityofnewyork.us", None)
query = "INCIDENT_DATETIME >= '2024-03-01T00:00:00' AND INCIDENT_DATETIME < '2024-04-01T00:00:00'"
results = client.get("76xm-jjuj", where=query, limit=100)
data = pd.DataFrame.from_records(results)
data.columns = data.columns.str.upper()
data.dropna(inplace=True)
st.session_state.sample_data = data
sample_data = st.session_state.sample_data
st.title('EMS Call Classifier')
st.write("This project aims to improve the accuracy of predicting the nature of emergency calls in NYC, thereby improving emergency response times. It utilizes historical EMS dispatch data and real-time weather conditions to predict call types. The project's ultimate goal is to get New Yorkers the help they need even faster.")
st.header('The Data')
st.write('Provided through the NYC Open Data.')
t1, t2 = st.tabs(['EMS Incident Dispatch', 'Weather'])
t1.markdown(
"""The [EMS Incident Dispatch Data](https://data.cityofnewyork.us/Public-Safety/EMS-Incident-Dispatch-Data/76xm-jjuj/about_data) is generated by the EMS Computer Aided Dispatch System, and covers information about the incident as it relates to the assignment of resources and the Fire Department’s response to the emergency.
The 6GB of data spans from April 2008 to October 2024 and employs the use of over 140 distinct call types (e.g. “Eye Injury” or “Cardiac Arrest”).
""")
t2.write("The Weather Data comes from...")
t1.subheader('Sample of First 100 Incidents from March 2024')
t1.dataframe(sample_data, use_container_width=True)
st.header("Analysis")
st.write("A visualization of an insight we gained from exploring and analyzing the data.")
st.header("Our Model")
st.markdown(
"""
Our model utilizes a Random Forest Multiclassifier enhanced with Gradient Boosting. We selected key features like time of day, day of week, borough, police precinct, and zip code, which proved most relevant in predicting the nature of an EMS dispatch incident. Initial call type and initial severity level were also included to provide a baseline for our predictions.
"""
)
st.subheader("Demo")
selected = st.slider("Choose a row:", 0, sample_data.shape[0]-1, 0)
if 'selected' not in st.session_state or st.session_state.selected != selected:
row = encode(sample_data.iloc[selected])
correct_label = sample_data.iloc[selected].FINAL_CALL_TYPE
c1, c2 = st.columns(2)
c1.dataframe(row)
c2.write("Correct Type:")
c2.dataframe({"FINAL_CALL_TYPE": correct_label}, use_container_width=True)
t1 = time.time()*1000
predicted_label = predict(row)
t2 = time.time()*1000
c2.write("Predicted Type:")
c2.dataframe({"PREDICTED_CALL_TYPE": predicted_label}, use_container_width=True)
if correct_label == predicted_label:
st.success(f"""Label successfully predicted in {t2-t1:.2f}ms!""")
else:
st.info(f"""The predicted label did not match the correct final label. We acknowledge that our model is unable to accurately predict the current label in all possible cases.""")
st.session_state.selected = selected
# CUSTOM PREDICTIONS SECTION
st.header("Custom Prediction")
st.write("Enter your own values for prediction:")
selected_features = ["INITIAL_CALL_TYPE", "INITIAL_SEVERITY_LEVEL_CODE", "INCIDENT_DATETIME", "ZIPCODE", "POLICEPRECINCT"]
feature_inputs = {}
for feature in selected_features:
if feature not in ["FINAL_CALL_TYPE"]:
if feature in ['INITIAL_CALL_TYPE', 'DAY_OF_WEEK', 'POLICEPRECINCT', 'ZIPCODE']: # categorical
options = list(sample_data[feature].unique())
else: # numerical
options = [str(x) for x in sample_data[feature].unique()]
feature_inputs[feature] = st.selectbox(feature, options=options)
# Encode user input
user_data = encode(pd.DataFrame(feature_inputs, index=[0]))
if st.button("Predict"):
t1 = time.time() * 1000
predicted_label = predict(user_data)
t2 = time.time() * 1000
st.write("Predicted Call Type:", predicted_label)
st.write(f"Prediction Time: {t2-t1:.2f}ms")
st.header("Results")
st.markdown(
"""
We achieved 89% accuracy on the largest subset of data we were able to train on - this is a 4% increase in accuracy from the preexisting typing system.
This includes 83% accuracy in typing calls initially marked as “Unknown.”
Incorporating any weather data besides temperature typically led to overfitting and decreased accuracy by up to 10%.
However, including snowfall data boosted accuracy by 2% when using a subset of just winter months.
"""
)
|