sfaezella commited on
Commit
616ba71
·
verified ·
1 Parent(s): 77dcc93

Fix a syntax error on model description

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -87,7 +87,7 @@ Although AllerTrans provides highly accurate predictions, it is intended as a sc
87
  demo = gr.Interface(fn=classify,
88
  inputs=gr.Textbox(lines=3, placeholder="Enter protein sequence..."),
89
  outputs=gr.Label(label="Prediction"),
90
- description=description_md))
91
 
92
  if __name__ == "__main__":
93
  demo.launch()
 
87
  demo = gr.Interface(fn=classify,
88
  inputs=gr.Textbox(lines=3, placeholder="Enter protein sequence..."),
89
  outputs=gr.Label(label="Prediction"),
90
+ description=description_md)
91
 
92
  if __name__ == "__main__":
93
  demo.launch()