Spaces:
Running
Running
Commit
·
cc21640
1
Parent(s):
228d150
Move LC caption to the leaderboard tab
Browse files
app.py
CHANGED
|
@@ -231,7 +231,7 @@ with gr.Blocks(
|
|
| 231 |
Use the filters below to explore different RTL benchmarks, simulators and models.
|
| 232 |
</p>
|
| 233 |
<p style="margin-top:10px; text-align:start !important;">
|
| 234 |
-
<span style="font-variant:small-caps; font-weight:bold;">UPDATE (
|
| 235 |
</p>
|
| 236 |
<p style="margin-top:-6px; text-align:start !important;">
|
| 237 |
<span style="font-variant:small-caps; font-weight:bold;">UPDATE (JULY 2025):</span> Our TuRTLe paper was accepted to
|
|
@@ -307,6 +307,16 @@ with gr.Blocks(
|
|
| 307 |
elem_classes="dataframe-leaderboard",
|
| 308 |
)
|
| 309 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 310 |
with gr.Tab("Plot View"):
|
| 311 |
with gr.Row(equal_height=True):
|
| 312 |
default_benchmark = s2r_benchs[0]
|
|
@@ -386,16 +396,6 @@ with gr.Blocks(
|
|
| 386 |
"""
|
| 387 |
)
|
| 388 |
|
| 389 |
-
gr.HTML(
|
| 390 |
-
"""
|
| 391 |
-
<div id="lc-footnote" style="font-size: 13px; opacity: 0.6; margin-top: -10px; padding: 0 5px; z-index:999; text-align: left;">
|
| 392 |
-
<span style="font-weight: 600; opacity: 1;">†</span>
|
| 393 |
-
<em>Line Completion</em> excludes “reasoning” models since this task targets quick auto-completion<br/>
|
| 394 |
-
Additionally, for <em>Line Completion</em> and <em>Code Completion</em> benchmarks we use <b>Base</b> model variant (if available), and for <em>Spec-to-RTL</em> we use <b>Instruct</b> model variant
|
| 395 |
-
</div>
|
| 396 |
-
"""
|
| 397 |
-
)
|
| 398 |
-
|
| 399 |
with gr.Row():
|
| 400 |
with gr.Accordion("📙 Citation", open=False):
|
| 401 |
citation_button = gr.Textbox(
|
|
|
|
| 231 |
Use the filters below to explore different RTL benchmarks, simulators and models.
|
| 232 |
</p>
|
| 233 |
<p style="margin-top:10px; text-align:start !important;">
|
| 234 |
+
<span style="font-variant:small-caps; font-weight:bold;">UPDATE (SEPT 2025):</span> Added <span>gpt-oss-20b</span> and <span>gpt-oss-120b</span> to the leaderboard
|
| 235 |
</p>
|
| 236 |
<p style="margin-top:-6px; text-align:start !important;">
|
| 237 |
<span style="font-variant:small-caps; font-weight:bold;">UPDATE (JULY 2025):</span> Our TuRTLe paper was accepted to
|
|
|
|
| 307 |
elem_classes="dataframe-leaderboard",
|
| 308 |
)
|
| 309 |
|
| 310 |
+
gr.HTML(
|
| 311 |
+
"""
|
| 312 |
+
<div id="lc-footnote" style="font-size: 13px; opacity: 0.6; margin-top: -5px; z-index:999; text-align: left;">
|
| 313 |
+
<span style="font-weight: 600; opacity: 1;">†</span>
|
| 314 |
+
<em>Line Completion</em> excludes “reasoning” models since this task targets quick auto-completion<br/>
|
| 315 |
+
Additionally, for <em>Line Completion</em> and <em>Code Completion</em> benchmarks we use <b>Base</b> model variant (if available), and for <em>Spec-to-RTL</em> we use <b>Instruct</b> model variant
|
| 316 |
+
</div>
|
| 317 |
+
"""
|
| 318 |
+
)
|
| 319 |
+
|
| 320 |
with gr.Tab("Plot View"):
|
| 321 |
with gr.Row(equal_height=True):
|
| 322 |
default_benchmark = s2r_benchs[0]
|
|
|
|
| 396 |
"""
|
| 397 |
)
|
| 398 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 399 |
with gr.Row():
|
| 400 |
with gr.Accordion("📙 Citation", open=False):
|
| 401 |
citation_button = gr.Textbox(
|