matanninio commited on
Commit
49831fb
·
1 Parent(s): 0c8cec9

fixed markup text and demonstration to task

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. mammal_demo/ps_task.py +2 -2
app.py CHANGED
@@ -68,7 +68,7 @@ def create_application():
68
  # return model_name_dropdown
69
 
70
  with gr.Blocks() as application:
71
- task_dropdown = gr.Dropdown(choices=["select demo"] + list(all_tasks.keys()), label="Mammal Task")
72
  task_dropdown.interactive = True
73
  model_name_dropdown = gr.Dropdown(
74
  choices=[
 
68
  # return model_name_dropdown
69
 
70
  with gr.Blocks() as application:
71
+ task_dropdown = gr.Dropdown(choices=["Select task"] + list(all_tasks.keys()), label="Mammal Task")
72
  task_dropdown.interactive = True
73
  model_name_dropdown = gr.Dropdown(
74
  choices=[
mammal_demo/ps_task.py CHANGED
@@ -20,9 +20,9 @@ class PsTask(MammalTask):
20
  "protein_seq": "LLQTGIHVRVSQPSL",
21
  }
22
  self.markup_text = """
23
- # Mammal based TODO: T-cell receptors-peptide binding specificity demonstration
24
 
25
- Given the TCR beta sequance and the epitope sequacne, estimate the binding specificity.
26
  """
27
 
28
 
 
20
  "protein_seq": "LLQTGIHVRVSQPSL",
21
  }
22
  self.markup_text = """
23
+ # Mammal based protein solubility estimation
24
 
25
+ Given the protein sequance, estimate if it's soluble or insoluble.
26
  """
27
 
28