HLMCC commited on
Commit
a9821d1
·
verified ·
1 Parent(s): 96ea551

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -52,6 +52,12 @@ except:
52
  # Streamlit app title and description
53
  st.title("PAAD Survival Prediction Submission Portal")
54
 
 
 
 
 
 
 
55
  # Form to upload CSV file
56
  with st.form("submission_form"):
57
  username = st.text_input("Username", max_chars=20)
 
52
  # Streamlit app title and description
53
  st.title("PAAD Survival Prediction Submission Portal")
54
 
55
+ # Streamlit warning message at the top of the app
56
+ st.warning("Your CSV file must only contain the following columns:\n\n"
57
+ "- `patient_id`: Unique identifier for each patient matching the patient_id in the test set\n"
58
+ "- `predicted_scores`: Predicted survival scores from your model\n\n"
59
+ "Please ensure your file follows this format before uploading.")
60
+
61
  # Form to upload CSV file
62
  with st.form("submission_form"):
63
  username = st.text_input("Username", max_chars=20)