fffiloni commited on
Commit
0589fd4
1 Parent(s): 62a24fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -52,6 +52,16 @@ with gr.Blocks() as demo:
52
  with gr.Column():
53
  gr.Markdown(title)
54
  gr.Markdown(description)
 
 
 
 
 
 
 
 
 
 
55
 
56
  with gr.Row():
57
  with gr.Column():
@@ -87,4 +97,4 @@ with gr.Blocks() as demo:
87
  )
88
 
89
  # Launch the app
90
- demo.queue().launch(show_error=True)
 
52
  with gr.Column():
53
  gr.Markdown(title)
54
  gr.Markdown(description)
55
+ gr.HTML("""
56
+ <div style="display:flex;column-gap:4px;">
57
+ <a href='https://github.com/ExplainableML/ReNO'>
58
+ <img src='https://img.shields.io/badge/GitHub-Repo-blue'>
59
+ </a>
60
+ <a href='https://arxiv.org/abs/2406.04312v1'>
61
+ <img src='https://img.shields.io/badge/Paper-Arxiv-red'>
62
+ </a>
63
+ </div>
64
+ """)
65
 
66
  with gr.Row():
67
  with gr.Column():
 
97
  )
98
 
99
  # Launch the app
100
+ demo.queue().launch(show_error=True, show_api=False)