rasmodev commited on
Commit
da0faaf
·
1 Parent(s): b7e65f8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -38,7 +38,7 @@ loaded_scaler = loaded_components['scaler']
38
 
39
  # Data Fields
40
  data_fields = {
41
- "PRG": "Number of Pregnancies (applicable only to females)\n - Description: The total number of pregnancies a female patient has experienced.",
42
  "PL": "Plasma Glucose Concentration (mg/dL)\n - The concentration of glucose in the patient's blood). It provides insights into the patient's blood sugar levels.",
43
  "PR": "Diastolic Blood Pressure (mm Hg)\n - The diastolic blood pressure, representing the pressure in the arteries when the heart is at rest between beats.",
44
  "SK": "Triceps Skinfold Thickness (mm)\n - The thickness of the skinfold on the triceps, measured in millimeters (mm). This measurement is often used to assess body fat percentage.",
@@ -90,4 +90,4 @@ if st.button("🔮 Predict Sepsis"):
90
  # Display Data Fields and Descriptions
91
  st.sidebar.title("🔍 Data Fields")
92
  for field, description in data_fields.items():
93
- st.sidebar.text(f"{field}: {description}")
 
38
 
39
  # Data Fields
40
  data_fields = {
41
+ "PRG": "Number of Pregnancies (applicable only to females)\n - The total number of pregnancies a female patient has experienced.",
42
  "PL": "Plasma Glucose Concentration (mg/dL)\n - The concentration of glucose in the patient's blood). It provides insights into the patient's blood sugar levels.",
43
  "PR": "Diastolic Blood Pressure (mm Hg)\n - The diastolic blood pressure, representing the pressure in the arteries when the heart is at rest between beats.",
44
  "SK": "Triceps Skinfold Thickness (mm)\n - The thickness of the skinfold on the triceps, measured in millimeters (mm). This measurement is often used to assess body fat percentage.",
 
90
  # Display Data Fields and Descriptions
91
  st.sidebar.title("🔍 Data Fields")
92
  for field, description in data_fields.items():
93
+ st.sidebar.markdown(f"{field}: {description}")