i_vorobyev commited on
Commit
42965a1
·
1 Parent(s): ab07ae7

add examples

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -114,9 +114,8 @@ inputs = [gr.Textbox(lines=5, label="Heavy chain"),
114
  gr.Textbox(lines=5, label="Light chain")
115
  ]
116
  iface = gr.Interface(fn=pred_seq,
117
- inputs=inputs,
118
- examples = [[h_chain_example, l_chain_example]],
119
  outputs=gr.HTML(),
120
  title="Antibody structure prediction")
121
 
122
- iface.launch(share = True)
 
114
  gr.Textbox(lines=5, label="Light chain")
115
  ]
116
  iface = gr.Interface(fn=pred_seq,
117
+ inputs=inputs,
 
118
  outputs=gr.HTML(),
119
  title="Antibody structure prediction")
120
 
121
+ iface.launch()