gregorlied commited on
Commit
c849e27
Β·
verified Β·
1 Parent(s): a93a630

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +39 -7
app.py CHANGED
@@ -133,24 +133,56 @@ with gr.Blocks() as demo:
133
 
134
  with gr.Row():
135
  gr.CheckboxGroup(
136
- label="Countries",
137
- info="Where are they from?",
138
  choices=[
 
 
139
  "Life Style",
140
- "Family History",
141
  "Social History",
 
 
 
 
 
 
 
 
 
142
  "Medical Surgical History",
 
 
 
 
 
 
 
 
143
  "Signs and Symptoms",
144
  "Comorbidities",
 
 
 
 
 
 
 
 
145
  "Diagnostic Techniques and Procedures",
146
- "Diagnosis",
147
  "Laboratory Values",
148
  "Pathology",
 
 
 
 
 
 
 
 
 
149
  "Pharmacological Therapy",
150
  "Interventional Therapy",
151
- "Patient Outcome Assessment",
152
- "Age",
153
- "Gender",
154
  ]
155
  )
156
 
 
133
 
134
  with gr.Row():
135
  gr.CheckboxGroup(
136
+ label="General Information",
137
+ info="Which information do you want to include?",
138
  choices=[
139
+ "Age",
140
+ "Gender",
141
  "Life Style",
 
142
  "Social History",
143
+ ]
144
+ )
145
+
146
+ with gr.Row():
147
+ gr.CheckboxGroup(
148
+ label="Medical History",
149
+ info="Which information do you want to include?",
150
+ choices=[
151
+ "Family History",
152
  "Medical Surgical History",
153
+ ]
154
+ )
155
+
156
+ with gr.Row():
157
+ gr.CheckboxGroup(
158
+ label="Signs and Symptoms",
159
+ info="Which information do you want to include?",
160
+ choices=[
161
  "Signs and Symptoms",
162
  "Comorbidities",
163
+ ]
164
+ )
165
+
166
+ with gr.Row():
167
+ gr.CheckboxGroup(
168
+ label="Medical Assesments",
169
+ info="Which information do you want to include?",
170
+ choices=[
171
  "Diagnostic Techniques and Procedures",
 
172
  "Laboratory Values",
173
  "Pathology",
174
+ "Diagnosis",
175
+ ]
176
+ )
177
+
178
+ with gr.Row():
179
+ gr.CheckboxGroup(
180
+ label="Therapy and Results",
181
+ info="Which information do you want to include?",
182
+ choices=[
183
  "Pharmacological Therapy",
184
  "Interventional Therapy",
185
+ "Patient Outcome Assessment",
 
 
186
  ]
187
  )
188