i_vorobyev
commited on
Commit
·
42965a1
1
Parent(s):
ab07ae7
add examples
Browse files
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(
|
|
|
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()
|