Synav commited on
Commit
f883f36
·
verified ·
1 Parent(s): f6b97e1

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +20 -22
src/streamlit_app.py CHANGED
@@ -25,30 +25,28 @@ st.set_page_config(
25
  initial_sidebar_state="expanded",
26
  )
27
 
 
 
 
 
 
 
 
 
 
 
 
28
  st.markdown(
29
  """
30
- <div style="text-align:center; margin-bottom:20px;">
31
- <h2>GVHD-Intel Pro</h2>
32
- <p style="max-width:900px; margin:0 auto;">
33
- A modular clinical decision-support framework for predicting
34
- Acute GVHD, Chronic GVHD, and overall GVHD risk after HSCT
35
- using machine learning models trained on transplant datasets.
36
- The platform provides explainability by displaying the top 20
37
- risk factors contributing to each prediction.
38
- </p>
39
- <p style="max-width:900px; margin:8px auto 0 auto;">
40
- It also supports overall survival (all-cause mortality) risk estimation
41
- and incorporates structured variables and preprocessing pipelines
42
- in preparation for time-to-event modeling using Cox Proportional
43
- Hazards analysis.
44
- </p>
45
- <p style="max-width:900px; margin:8px auto 0 auto;">
46
- Enter recipient and donor details below to generate individualized
47
- risk predictions.
48
- </p>
49
- <p style="max-width:900px; margin:12px auto 0 auto; font-size:14px; color:gray;">
50
- Research tool only — not validated for clinical use.
51
- </p>
52
  </div>
53
  """,
54
  unsafe_allow_html=True
 
25
  initial_sidebar_state="expanded",
26
  )
27
 
28
+ # ---------- App Header ----------
29
+
30
+ st.markdown(
31
+ """
32
+ <h1 style='text-align: center; margin-bottom: 10px;'>
33
+ GVHD-Intel Pro
34
+ </h1>
35
+ """,
36
+ unsafe_allow_html=True
37
+ )
38
+
39
  st.markdown(
40
  """
41
+ <div style='font-size:16px; line-height:1.6;'>
42
+ A modular clinical decision-support framework for predicting Acute GVHD and Chronic GVHD risk after HSCT using machine learning models trained on transplant datasets.
43
+ The platform provides explainability by displaying the top 20 risk factors contributing to each prediction.<br><br>
44
+
45
+ It also supports overall survival (all-cause mortality) risk estimation using Cox Proportional Hazards analysis.<br><br>
46
+
47
+ Enter recipient and donor details below to generate individualized risk predictions.<br><br>
48
+
49
+ <b>Research tool only — not validated for clinical use.</b>
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  </div>
51
  """,
52
  unsafe_allow_html=True