Update app.py
Browse files
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(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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:
|