mgyigit commited on
Commit
9bf9415
1 Parent(s): ff04de8

Update gradio_app.py

Browse files
Files changed (1) hide show
  1. gradio_app.py +3 -3
gradio_app.py CHANGED
@@ -120,11 +120,11 @@ with gr.Blocks() as demo:
120
  - **NoTarget** is the non-target-specific version of DrugGEN. This model only focuses on learning the chemical properties from the ChEMBL training dataset.
121
  """)
122
  model_name = gr.Radio(
123
- choices=("DrugGEN", "NoTarget"),
124
  value="DrugGEN",
125
  label="Select a model to make inference",
126
- info= str("DrugGEN model designs small molecules to target the human AKT1 protein (UniProt id: P31749)." + '\n'
127
- + "DrugGEN-NoTarget model designs random drug-like small molecules.")
128
  )
129
 
130
  num_molecules = gr.Number(
 
120
  - **NoTarget** is the non-target-specific version of DrugGEN. This model only focuses on learning the chemical properties from the ChEMBL training dataset.
121
  """)
122
  model_name = gr.Radio(
123
+ choices=("DrugGEN", "DrugGEN-NoTarget"),
124
  value="DrugGEN",
125
  label="Select a model to make inference",
126
+ info= str("**DrugGEN** model designs small molecules to target the human AKT1 protein (UniProt id: P31749)." + '\n'
127
+ + "**DrugGEN-NoTarget** model designs random drug-like small molecules.")
128
  )
129
 
130
  num_molecules = gr.Number(