rasmodev commited on
Commit
caefd9f
Β·
verified Β·
1 Parent(s): 0f59064

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -3
app.py CHANGED
@@ -29,12 +29,12 @@ st.markdown(
29
  """
30
  )
31
 
32
- # Link to Detailed Article on Employee Attrition
33
- st.markdown("πŸ”— **Learn more about employee attrition from [Academy to Innovate HR (AIHR)](https://www.aihr.com/wp-content/uploads/Reasons-for-Employee-Attrition.png)**")
34
-
35
  # Main content
36
  st.image("https://www.aihr.com/wp-content/uploads/Reasons-for-Employee-Attrition.png")
37
 
 
 
 
38
  st.markdown("---")
39
 
40
  # Additional Information for Sample Prediction
@@ -48,6 +48,26 @@ st.sidebar.info(
48
  "It utilizes a CatBoost machine learning model trained on an employee attrition dataset."
49
  )
50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  # Define the Streamlit app
52
  def main():
53
  # Define layout with three columns
 
29
  """
30
  )
31
 
 
 
 
32
  # Main content
33
  st.image("https://www.aihr.com/wp-content/uploads/Reasons-for-Employee-Attrition.png")
34
 
35
+ # Link to Detailed Article on Employee Attrition
36
+ st.markdown("πŸ”— **Learn more about employee attrition from [Academy to Innovate HR (AIHR)](https://www.aihr.com/wp-content/uploads/Reasons-for-Employee-Attrition.png)**")
37
+
38
  st.markdown("---")
39
 
40
  # Additional Information for Sample Prediction
 
48
  "It utilizes a CatBoost machine learning model trained on an employee attrition dataset."
49
  )
50
 
51
+ # Load The Train Dataset
52
+ train_df = pd.read_csv("train_data.csv", index_col=None)
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.write(train_df.head())
58
+
59
+ # Auto-expand sidebar code
60
+ st.markdown(
61
+ """
62
+ <style>
63
+ [data-testid="stSidebar"][aria-expanded="false"] > div:first-child {
64
+ width: 100%;
65
+ }
66
+ </style>
67
+ """,
68
+ unsafe_allow_html=True
69
+ )
70
+
71
  # Define the Streamlit app
72
  def main():
73
  # Define layout with three columns