rasmodev commited on
Commit
35ba659
·
1 Parent(s): 4d5a603

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -51,13 +51,15 @@ st.sidebar.info(
51
  )
52
 
53
  # Load The Train Dataset
54
- train_df = pd.read_csv("Train.csv")
55
 
56
- # Training Dataset Information
57
- st.markdown("📊 **Training Dataset Information:**")
58
- st.write(f"The training dataset used for building the machine learning model is loaded from the file 'Patients_Files_Train.csv'.")
59
- st.write("Here is a snapshot of the training dataset:")
60
- st.write(train_df.head())
 
 
61
 
62
  # Load the model and key components
63
  with open('model_and_key_components.pkl', 'rb') as file:
 
51
  )
52
 
53
  # Load The Train Dataset
54
+ train_df = pd.read_csv("Patients_Files_Train.csv")
55
 
56
+ # Training Dataset Information in the sidebar
57
+ st.sidebar.markdown("📊 **Training Dataset Information:**")
58
+ st.sidebar.write(
59
+ "The training dataset used for building the machine learning model is loaded from the file 'Patients_Files_Train.csv'."
60
+ " Here is a snapshot of the training dataset:"
61
+ )
62
+ st.sidebar.write(train_df.head())
63
 
64
  # Load the model and key components
65
  with open('model_and_key_components.pkl', 'rb') as file: