Update app.py
Browse files
app.py
CHANGED
@@ -47,12 +47,12 @@ with gr.Blocks(title=title) as demo:
|
|
47 |
|
48 |
with gr.Row():
|
49 |
with gr.Column():
|
50 |
-
HighBP = gr.Radio(label="Do you have high
|
51 |
with gr.Column():
|
52 |
HighChol = gr.Radio(label="Do you have high Cholesterol?", choices=["No", "Yes"], default="Yes", description="0 = no high cholesterol, 1 = high cholesterol")
|
53 |
with gr.Row():
|
54 |
with gr.Column():
|
55 |
-
CholCheck = gr.Radio(label="Did you
|
56 |
with gr.Column():
|
57 |
BMI = gr.Number(label="BMI", minimum=0, maximum=98, default=1)
|
58 |
with gr.Row():
|
|
|
47 |
|
48 |
with gr.Row():
|
49 |
with gr.Column():
|
50 |
+
HighBP = gr.Radio(label="Do you have high blood pressure?", choices=["No", "Yes"], default="Yes", description="0 = no high BP, 1 = high BP")
|
51 |
with gr.Column():
|
52 |
HighChol = gr.Radio(label="Do you have high Cholesterol?", choices=["No", "Yes"], default="Yes", description="0 = no high cholesterol, 1 = high cholesterol")
|
53 |
with gr.Row():
|
54 |
with gr.Column():
|
55 |
+
CholCheck = gr.Radio(label="Did you check your cholestorol in the past 5 years?", choices=["No", "Yes"], default="Yes", description="No = not checked in 5 years, Yes = checked in 5 years")
|
56 |
with gr.Column():
|
57 |
BMI = gr.Number(label="BMI", minimum=0, maximum=98, default=1)
|
58 |
with gr.Row():
|