[data] fixing model
Browse files
app.py
CHANGED
@@ -198,4 +198,16 @@ with demo:
|
|
198 |
show_copy_button=True,
|
199 |
)
|
200 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
demo.queue(default_concurrency_limit=40).launch()
|
|
|
198 |
show_copy_button=True,
|
199 |
)
|
200 |
|
201 |
+
# Add a button to link to the Hugging Face discussion page
|
202 |
+
gr.Markdown("---") # Visual separator
|
203 |
+
link_to_discussion = "https://huggingface.co/login?next=%2Fspaces%2Fnvidia%2FLOTUS-VLM-Bias%2Fdiscussions%2Fnew"
|
204 |
+
gr.HTML(f'''
|
205 |
+
<div style="text-align: center; margin-top: 20px; margin-bottom: 20px;">
|
206 |
+
<a href="{link_to_discussion}" target="_blank" rel="noopener noreferrer"
|
207 |
+
style="background-color: #007bff; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; font-size: 16px;">
|
208 |
+
Submit Your Results / Open a New Discussion
|
209 |
+
</a>
|
210 |
+
</div>
|
211 |
+
''')
|
212 |
+
|
213 |
demo.queue(default_concurrency_limit=40).launch()
|