rasmodev commited on
Commit
9c20e70
·
1 Parent(s): 53c53e9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -137,7 +137,14 @@ if st.button("🔮 Predict Sepsis"):
137
  input_df = pd.DataFrame([input_data])
138
 
139
  # Display the input DataFrame
140
- st.markdown("### Input Data with Sepsis Prediction")
 
 
 
 
 
 
 
141
  st.table(input_df)
142
 
143
  except Exception as e:
 
137
  input_df = pd.DataFrame([input_data])
138
 
139
  # Display the input DataFrame
140
+ st.markdown(
141
+ f"""
142
+ <div style="text-align: center;">
143
+ <p>### Input Data with Sepsis Prediction</p>
144
+ </div>
145
+ """,
146
+ unsafe_allow_html=True
147
+ )
148
  st.table(input_df)
149
 
150
  except Exception as e: