Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -176,6 +176,18 @@ run_update_dataset()
|
|
176 |
|
177 |
block = gr.Blocks(css=custom_css)
|
178 |
with block:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
with gr.Row(elem_id="header-row"):
|
180 |
gr.HTML(f"<h1>HIVEX-Leaderboard</h1><br><p>Total models: {get_total_models()}</p><br>")
|
181 |
|
|
|
176 |
|
177 |
block = gr.Blocks(css=custom_css)
|
178 |
with block:
|
179 |
+
with gr.Row(elem_id="header-row"):
|
180 |
+
gr.HTML(
|
181 |
+
"""
|
182 |
+
<div align="center">
|
183 |
+
<img
|
184 |
+
src="https://raw.githubusercontent.com/hivex-research/hivex/main/docs/images/hivex_thumb.png"
|
185 |
+
alt="hivex header image"
|
186 |
+
style="border-radius: 20px; width: 50%;"
|
187 |
+
/>
|
188 |
+
</div>
|
189 |
+
"""
|
190 |
+
)
|
191 |
with gr.Row(elem_id="header-row"):
|
192 |
gr.HTML(f"<h1>HIVEX-Leaderboard</h1><br><p>Total models: {get_total_models()}</p><br>")
|
193 |
|