TianlaiChen commited on
Commit
cd6ad5b
·
1 Parent(s): d56dc1c
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -41,9 +41,9 @@ def hello():
41
  interface = gr.Interface(
42
  fn=hello,
43
  inputs=[
44
- gr.inputs.Textbox(label="Protein Sequence", default="Enter protein sequence here", type="text"),
45
- gr.inputs.Dropdown(choices=[str(i) for i in range(2, 51)], label="Peptide Length", default="15"),
46
- gr.inputs.Dropdown(choices=[str(i) for i in range(1, 11)], label="Top K Value", default="3")
47
  ],
48
  outputs="textbox",
49
  live=True
 
41
  interface = gr.Interface(
42
  fn=hello,
43
  inputs=[
44
+ gr.Textbox(label="Protein Sequence", default="Enter protein sequence here", type="text"),
45
+ gr.Dropdown(choices=[str(i) for i in range(2, 51)], label="Peptide Length", default="15"),
46
+ gr.Dropdown(choices=[str(i) for i in range(1, 11)], label="Top K Value", default="3")
47
  ],
48
  outputs="textbox",
49
  live=True