rasmodev commited on
Commit
f756bc2
·
1 Parent(s): c3a5590

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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.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:
 
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: