Update app.py
Browse files
app.py
CHANGED
|
@@ -258,6 +258,6 @@ with open("ACE.md", "r") as f:
|
|
| 258 |
iface = gr.Interface(fn=ACE,
|
| 259 |
title="🚀DeepACE: ACE classification model",
|
| 260 |
inputs=gr.Textbox(show_label=False, placeholder="Enter peptide or protein", lines=4),
|
| 261 |
-
outputs= [gr.Textbox(show_label=False, placeholder="probability", lines=1)],
|
| 262 |
description=description)
|
| 263 |
iface.launch()
|
|
|
|
| 258 |
iface = gr.Interface(fn=ACE,
|
| 259 |
title="🚀DeepACE: ACE classification model",
|
| 260 |
inputs=gr.Textbox(show_label=False, placeholder="Enter peptide or protein", lines=4),
|
| 261 |
+
outputs= [gr.Textbox(show_label=False, placeholder="class", lines=1), gr.Textbox(show_label=False, placeholder="probability", lines=1)],
|
| 262 |
description=description)
|
| 263 |
iface.launch()
|