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