Update app.py
Browse files
app.py
CHANGED
@@ -14,12 +14,25 @@ st.markdown(
|
|
14 |
""",
|
15 |
unsafe_allow_html=True
|
16 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
st.markdown("---")
|
18 |
|
19 |
st.image("https://dinizululawgroup.com/wp-content/uploads/2020/07/news.jpg", width=700)
|
20 |
|
21 |
-
|
22 |
-
st.write("π Welcome to the Sepsis Prediction App!")
|
23 |
st.write("Enter the medical data in the input fields below, then click 'Predict Sepsis', and get the patient's Sepsis prediction")
|
24 |
|
25 |
# About Section with Style
|
|
|
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 with Icons
|
21 |
+
sepsis_info = """
|
22 |
+
π©Έ **Sepsis Overview:**
|
23 |
+
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.
|
24 |
+
|
25 |
+
π **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.)**
|
26 |
+
"""
|
27 |
+
|
28 |
+
# Display Sepsis Information
|
29 |
+
st.write(sepsis_info)
|
30 |
+
|
31 |
st.markdown("---")
|
32 |
|
33 |
st.image("https://dinizululawgroup.com/wp-content/uploads/2020/07/news.jpg", width=700)
|
34 |
|
35 |
+
|
|
|
36 |
st.write("Enter the medical data in the input fields below, then click 'Predict Sepsis', and get the patient's Sepsis prediction")
|
37 |
|
38 |
# About Section with Style
|