Update app.py
Browse files
app.py
CHANGED
@@ -14,19 +14,20 @@ st.markdown(
|
|
14 |
""",
|
15 |
unsafe_allow_html=True
|
16 |
)
|
|
|
17 |
# Welcome Message with Style
|
18 |
st.write("π Welcome to the Sepsis Prediction App!")
|
19 |
|
20 |
-
# Sepsis Information
|
21 |
-
|
22 |
-
|
23 |
-
Sepsis
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
|
28 |
-
#
|
29 |
-
st.
|
30 |
|
31 |
st.markdown("---")
|
32 |
|
|
|
14 |
""",
|
15 |
unsafe_allow_html=True
|
16 |
)
|
17 |
+
|
18 |
# Welcome Message with Style
|
19 |
st.write("π Welcome to the Sepsis Prediction App!")
|
20 |
|
21 |
+
# Sepsis Information
|
22 |
+
st.markdown(
|
23 |
+
"""
|
24 |
+
π©Έ **Sepsis Overview:**
|
25 |
+
Sepsis is a critical medical condition triggered by the body's extreme response to an infection. It can lead to organ failure and, if not detected early, poses a serious threat to life. This project focuses on harnessing the power of machine learning to predict the onset of sepsis, allowing healthcare professionals to intervene promptly and save lives.
|
26 |
+
"""
|
27 |
+
)
|
28 |
|
29 |
+
# Link to WHO Fact Sheet on Sepsis
|
30 |
+
st.markdown("π **Learn more about sepsis from [World Health Organization (WHO)](https://www.who.int/news-room/fact-sheets/detail/sepsis#:~:text=Overview,problems%20are%20at%20higher%20risk.)**")
|
31 |
|
32 |
st.markdown("---")
|
33 |
|