MarMont commited on
Commit
647995a
·
1 Parent(s): c34c79e

add headlines to output

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -558,7 +558,7 @@ def main(dataset, model, progress=gr.Progress(track_tqdm=True)):
558
 
559
 
560
 
561
- return place_data
562
 
563
 
564
  iface = gr.Interface(fn=main,
@@ -573,9 +573,9 @@ iface = gr.Interface(fn=main,
573
  label="Model")
574
  ],
575
  # examples=examples,
576
- outputs="text",
577
- # ["text",
578
- # "text"],
579
  enable_queue=True,
580
  debug=True,
581
  )
 
558
 
559
 
560
 
561
+ return place_data, headlines
562
 
563
 
564
  iface = gr.Interface(fn=main,
 
573
  label="Model")
574
  ],
575
  # examples=examples,
576
+ outputs=[
577
+ "text",
578
+ "text"],
579
  enable_queue=True,
580
  debug=True,
581
  )