sagawa commited on
Commit
c998ccf
1 Parent(s): 93a77af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -9,10 +9,13 @@ def predict_stability(pdb_file=None, sequence=None):
9
  with gr.Blocks() as demo:
10
  gr.Markdown(
11
  """
12
- # Protein Stability Prediction
13
- **Predict the stability of a protein from its sequence or PDB file.**
14
  """
15
  )
 
 
 
16
 
17
  with gr.Tabs():
18
  with gr.TabItem("Upload PDB File"):
 
9
  with gr.Blocks() as demo:
10
  gr.Markdown(
11
  """
12
+ # PLTNUM: Protein LifeTime Neural Model
13
+ **Predict the protein half-life from its sequence or PDB file.**
14
  """
15
  )
16
+ gr.MarkDown("![model image](https://github.com/sagawatatsuya/PLTNUM/blob/main/model-image.png)")
17
+
18
+ model_choice = gr.Radio(choices=["SaProt", "ESM-2"], label="Select PLTNUM's base model.", value="SaProt")
19
 
20
  with gr.Tabs():
21
  with gr.TabItem("Upload PDB File"):