rasmodev commited on
Commit
1c29d02
·
1 Parent(s): 8debddb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -39,7 +39,6 @@ st.markdown("---")
39
 
40
  st.image("https://dinizululawgroup.com/wp-content/uploads/2020/07/news.jpg", width=700)
41
 
42
-
43
  st.write("Enter the medical data in the input fields below, then click 'Predict Sepsis', and get the patient's Sepsis prediction")
44
 
45
  # About Section with Style
@@ -55,8 +54,7 @@ train_df = pd.read_csv("Train.csv")
55
  # Training Dataset Information in the sidebar
56
  st.sidebar.markdown("📊 **Training Dataset Information:**")
57
  st.sidebar.write(
58
- "The training dataset used for building the machine learning model is loaded from the file 'Patients_Files_Train.csv'."
59
- " Here is a snapshot of the training dataset:"
60
  )
61
  st.sidebar.write(train_df.head())
62
 
 
39
 
40
  st.image("https://dinizululawgroup.com/wp-content/uploads/2020/07/news.jpg", width=700)
41
 
 
42
  st.write("Enter the medical data in the input fields below, then click 'Predict Sepsis', and get the patient's Sepsis prediction")
43
 
44
  # About Section with Style
 
54
  # Training Dataset Information in the sidebar
55
  st.sidebar.markdown("📊 **Training Dataset Information:**")
56
  st.sidebar.write(
57
+ "The model is trained on a sepsis dataset. Here's a snapshot of the training data:"
 
58
  )
59
  st.sidebar.write(train_df.head())
60