Update app.py
Browse files
app.py
CHANGED
@@ -76,9 +76,9 @@ with gr.Blocks(title=title) as demo:
|
|
76 |
with gr.Row():
|
77 |
strat = gr.Radio(["Anti-retroviral naive",">1 but <=52 weeks of prior anti-retroviral therapy",">52 weeks"],label="Anti-retroviral history stratification",type="index")
|
78 |
with gr.Row():
|
79 |
-
symptom = gr.Dropdown(["Asymptomatic",
|
80 |
-
treat = gr.Dropdown(["ZDV only", "others"],
|
81 |
-
offtrt = gr.Dropdown(
|
82 |
with gr.Row():
|
83 |
cd40 = gr.Slider(label="CD4 at baseline", minimum=0, maximum=1119, value=500, step=50)
|
84 |
cd420 = gr.Slider(label="CD4 at 20 +/-5 weeks", minimum=49, maximum=1119, value=600, step=50)
|
|
|
76 |
with gr.Row():
|
77 |
strat = gr.Radio(["Anti-retroviral naive",">1 but <=52 weeks of prior anti-retroviral therapy",">52 weeks"],label="Anti-retroviral history stratification",type="index")
|
78 |
with gr.Row():
|
79 |
+
symptom = gr.Dropdown(label="Symptoms",choices=["Asymptomatic","Symptomatic"],type="index")
|
80 |
+
treat = gr.Dropdown(label="Treatment",choices=["ZDV only", "others"],type="index")
|
81 |
+
offtrt = gr.Dropdown(label="Off treatment indicator before 96 +/- 5 weeks",choices=["No", "Yes"],type="index")
|
82 |
with gr.Row():
|
83 |
cd40 = gr.Slider(label="CD4 at baseline", minimum=0, maximum=1119, value=500, step=50)
|
84 |
cd420 = gr.Slider(label="CD4 at 20 +/-5 weeks", minimum=49, maximum=1119, value=600, step=50)
|