paul hilders commited on
Commit
9b5cfa8
1 Parent(s): 824df2f

Change formatting of acknowledgements

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -139,6 +139,10 @@ iface_NER = gr.Interface(fn=NER_demo,
139
  demo_tabs = gr.TabbedInterface([iface, iface_NER], ["Default", "NER"])
140
 
141
  with demo_tabs:
142
- gr.Markdown("####Acknowledgements")
143
- gr.Markdown("This demo was developed for the Interpretability & Explainability in AI course at the University of Amsterdam. We would like express our thanks to Jelle Zuidema, Jaap Jumelet, Tom Kersten, Christos Athanasiadis, Peter Heemskerk, Zhi Zhang, and all the other TAs who helped us during this course.")
 
 
 
 
144
  demo_tabs.launch(show_error=True)
 
139
  demo_tabs = gr.TabbedInterface([iface, iface_NER], ["Default", "NER"])
140
 
141
  with demo_tabs:
142
+ gr.Markdown("""
143
+ ####Acknowledgements
144
+ This demo was developed for the Interpretability & Explainability in AI course at the University of
145
+ Amsterdam. We would like express our thanks to Jelle Zuidema, Jaap Jumelet, Tom Kersten, Christos
146
+ Athanasiadis, Peter Heemskerk, Zhi Zhang, and all the other TAs who helped us during this course.
147
+ """)
148
  demo_tabs.launch(show_error=True)