skhage commited on
Commit
03cb6c9
1 Parent(s): a14091f

simplify outputs

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,5 +10,5 @@ def make_summary(article, max_length=130, min_length=30, do_sample=False):
10
  def get_entities(article):
11
  return ner(article)
12
 
13
- iface = gr.Interface(fn=[make_summary, get_entities], inputs="text", outputs="text")
14
  iface.launch()
 
10
  def get_entities(article):
11
  return ner(article)
12
 
13
+ iface = gr.Interface(fn=make_summary, inputs="text", outputs="text")
14
  iface.launch()