rasmodev commited on
Commit
3d9e875
Β·
1 Parent(s): 37401bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -9
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 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
 
 
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