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

Update app.py

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