felipermontini commited on
Commit
9b7d3b2
·
verified ·
1 Parent(s): 2a5795d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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", "Symptomatic"],label="Symptoms",type="index")
80
- treat = gr.Dropdown(["ZDV only", "others"],label="Treatment",type="index")
81
- offtrt = gr.Dropdown(["No", "Yes"],label="Off treatment indicator before 96 +/- 5 weeks",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)
 
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)