mgyigit commited on
Commit
6323d6b
1 Parent(s): 70b3b77

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -4
app.py CHANGED
@@ -196,24 +196,28 @@ with block:
196
  )
197
  similarity_tasks = gr.CheckboxGroup(
198
  choices=similarity_tasks_options,
199
- label="Select Similarity Tasks",
200
  interactive=True,
201
  )
202
 
203
  function_prediction_aspect = gr.Radio(
204
  choices=function_prediction_aspect_options,
205
- label="Select Function Prediction Aspect",
206
  interactive=True,
207
  )
208
 
209
  family_prediction_dataset = gr.CheckboxGroup(
210
  choices=family_prediction_dataset_options,
211
- label="Select Family Prediction Dataset",
212
  interactive=True,
213
  )
214
 
215
 
216
- function_dataset = "All_Data_Sets"
 
 
 
 
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')