Update app.py
Browse files
app.py
CHANGED
|
@@ -61,7 +61,7 @@ st.markdown("Differential diagnosis of dementia remains a challenge in neurology
|
|
| 61 |
|
| 62 |
# section 2
|
| 63 |
st.markdown("#### Demo")
|
| 64 |
-
st.markdown("Please enter the input features in the textbox below, formatted as a JSON dictionary. Click the \"**Random
|
| 65 |
|
| 66 |
# layout
|
| 67 |
layout_l, layout_r = st.columns([1, 1])
|
|
@@ -79,7 +79,7 @@ with layout_l:
|
|
| 79 |
left_col, middle_col, right_col = st.columns([3, 4, 1])
|
| 80 |
|
| 81 |
with left_col:
|
| 82 |
-
sample_button = st.form_submit_button("Random
|
| 83 |
|
| 84 |
with right_col:
|
| 85 |
submit_button = st.form_submit_button("Predict")
|
|
|
|
| 61 |
|
| 62 |
# section 2
|
| 63 |
st.markdown("#### Demo")
|
| 64 |
+
st.markdown("Please enter the input features in the textbox below, formatted as a JSON dictionary. Click the \"**Random case**\" button to populate the textbox with a randomly selected case from the NACC testing dataset. Use the \"**Predict**\" button to submit your input to the model, which will then provide probability predictions for mental status and all 10 etiologies.")
|
| 65 |
|
| 66 |
# layout
|
| 67 |
layout_l, layout_r = st.columns([1, 1])
|
|
|
|
| 79 |
left_col, middle_col, right_col = st.columns([3, 4, 1])
|
| 80 |
|
| 81 |
with left_col:
|
| 82 |
+
sample_button = st.form_submit_button("Random case")
|
| 83 |
|
| 84 |
with right_col:
|
| 85 |
submit_button = st.form_submit_button("Predict")
|