mgyigit commited on
Commit
8cbec0c
1 Parent(s): ed71669

Update gradio_app.py

Browse files
Files changed (1) hide show
  1. gradio_app.py +3 -3
gradio_app.py CHANGED
@@ -117,14 +117,14 @@ with gr.Blocks() as demo:
117
  gr.Markdown("""
118
  ### Model Variations
119
  - **DrugGEN** is the default model. The input of the generator is the real molecules (ChEMBL) dataset (to ease the learning process) and the discriminator compares the generated molecules with the real inhibitors of the given target protein.
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= gr.Markdown("**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(
 
117
  gr.Markdown("""
118
  ### Model Variations
119
  - **DrugGEN** is the default model. The input of the generator is the real molecules (ChEMBL) dataset (to ease the learning process) and the discriminator compares the generated molecules with the real inhibitors of the given target protein.
120
+ - **DrugGEN-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(