Update app.py
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ train_df = pd.read_csv("Train.csv", index_col=None)
|
|
54 |
# Training Dataset Information in the sidebar
|
55 |
st.sidebar.markdown("📊 **Training Dataset Information:**")
|
56 |
st.sidebar.text("The model is trained on a sepsis dataset. Here's an overview of the dataset:")
|
57 |
-
st.sidebar.table(train_df.head()
|
58 |
|
59 |
# Load the model and key components
|
60 |
with open('model_and_key_components.pkl', 'rb') as file:
|
|
|
54 |
# Training Dataset Information in the sidebar
|
55 |
st.sidebar.markdown("📊 **Training Dataset Information:**")
|
56 |
st.sidebar.text("The model is trained on a sepsis dataset. Here's an overview of the dataset:")
|
57 |
+
st.sidebar.table(train_df.head())
|
58 |
|
59 |
# Load the model and key components
|
60 |
with open('model_and_key_components.pkl', 'rb') as file:
|