Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -196,24 +196,28 @@ with block:
|
|
196 |
)
|
197 |
similarity_tasks = gr.CheckboxGroup(
|
198 |
choices=similarity_tasks_options,
|
199 |
-
label="
|
200 |
interactive=True,
|
201 |
)
|
202 |
|
203 |
function_prediction_aspect = gr.Radio(
|
204 |
choices=function_prediction_aspect_options,
|
205 |
-
label="
|
206 |
interactive=True,
|
207 |
)
|
208 |
|
209 |
family_prediction_dataset = gr.CheckboxGroup(
|
210 |
choices=family_prediction_dataset_options,
|
211 |
-
label="
|
212 |
interactive=True,
|
213 |
)
|
214 |
|
215 |
|
216 |
-
function_dataset =
|
|
|
|
|
|
|
|
|
217 |
|
218 |
with gr.Column():
|
219 |
human_file = gr.components.File(label="Click to Upload the representation file (csv) for Human dataset", file_count="single", type='filepath')
|
|
|
196 |
)
|
197 |
similarity_tasks = gr.CheckboxGroup(
|
198 |
choices=similarity_tasks_options,
|
199 |
+
label="Similarity Tasks",
|
200 |
interactive=True,
|
201 |
)
|
202 |
|
203 |
function_prediction_aspect = gr.Radio(
|
204 |
choices=function_prediction_aspect_options,
|
205 |
+
label="Function Prediction Aspect",
|
206 |
interactive=True,
|
207 |
)
|
208 |
|
209 |
family_prediction_dataset = gr.CheckboxGroup(
|
210 |
choices=family_prediction_dataset_options,
|
211 |
+
label="Family Prediction Dataset",
|
212 |
interactive=True,
|
213 |
)
|
214 |
|
215 |
|
216 |
+
function_dataset = gr.Textbox(
|
217 |
+
label="Function Prediction Dataset",
|
218 |
+
visible=False,
|
219 |
+
value="All_Data_Sets"
|
220 |
+
)
|
221 |
|
222 |
with gr.Column():
|
223 |
human_file = gr.components.File(label="Click to Upload the representation file (csv) for Human dataset", file_count="single", type='filepath')
|