Update app.py
Browse files
app.py
CHANGED
@@ -261,6 +261,8 @@ def ACE(file):
|
|
261 |
return 'output.csv', out_text, out_prob
|
262 |
|
263 |
iface = gr.Interface(fn=ACE,
|
264 |
-
|
265 |
-
|
266 |
-
|
|
|
|
|
|
261 |
return 'output.csv', out_text, out_prob
|
262 |
|
263 |
iface = gr.Interface(fn=ACE,
|
264 |
+
title="🚀DeepACE: ACE classification model",
|
265 |
+
inputs=gr.Textbox(show_label=False, placeholder="Enter peptide or protein", lines=4),
|
266 |
+
outputs= ["file",gr.Textbox(show_label=False, placeholder="class", lines=1),gr.Textbox(show_label=False, placeholder="probability", lines=1)],
|
267 |
+
description=description)
|
268 |
+
iface.launch()
|