lunadebruyne commited on
Commit
6f98036
·
1 Parent(s): c941dd2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -353,5 +353,12 @@ with gr.Blocks() as demo:
353
  send_btn.click(fn=unavailable, inputs=[input_file,input_checks], outputs=[output_markdown,message])
354
  demo_btn.click(fn=showcase, inputs=[input_file], outputs=[output_markdown,message,output_file,next_button_freq,next_button_dist,next_button_peaks,next_button_topics])
355
 
 
 
 
 
 
 
 
356
 
357
- demo.launch(inline=True, width="80%")
 
353
  send_btn.click(fn=unavailable, inputs=[input_file,input_checks], outputs=[output_markdown,message])
354
  demo_btn.click(fn=showcase, inputs=[input_file], outputs=[output_markdown,message,output_file,next_button_freq,next_button_dist,next_button_peaks,next_button_topics])
355
 
356
+ with gr.Row():
357
+ with gr.Column():
358
+ gr.Markdown("""
359
+ <font size="2">Both this demo and the dataset have been created by [LT3](https://lt3.ugent.be/), the Language and Translation Technology Team of Ghent University. The EmotioNL project has been carried out with support from the Research Foundation – Flanders (FWO). For any questions, please contact luna.debruyne@ugent.be.</font>
360
+
361
+ <div style="display: flex"><img style="margin-right: 1em" alt="LT3 logo" src="https://lt3.ugent.be/static/images/logo_v2_single.png" width="136" height="58"> <img style="margin-right: 1em" alt="FWO logo" src="https://www.fwo.be/images/logo_desktop.png" height="58"></div>
362
+ """)
363
 
364
+ demo.launch()