Spaces:
Running
Running
Commit
·
09c2e18
1
Parent(s):
617d8fc
Avoid model types row to break
Browse files
about.py
CHANGED
@@ -1,6 +1,5 @@
|
|
1 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
2 |
-
CITATION_BUTTON_TEXT = r"""
|
3 |
-
@misc{turtle_2025,
|
4 |
author = {Garcia-Gasulla, D. and Kestor, G. and Parisi, E. and Albertí-Binimelis, M. and Gutierrez, C. and Ghorab, R.M. and Montenegro, O. and Homs, B. and Moreto, Miquel},
|
5 |
title = {TuRTLe: A Unified Evaluation of LLMs for RTL Generation},
|
6 |
note = {Submitted for publication as of March 2025.}
|
|
|
1 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
2 |
+
CITATION_BUTTON_TEXT = r"""@misc{turtle_2025,
|
|
|
3 |
author = {Garcia-Gasulla, D. and Kestor, G. and Parisi, E. and Albertí-Binimelis, M. and Gutierrez, C. and Ghorab, R.M. and Montenegro, O. and Homs, B. and Moreto, Miquel},
|
4 |
title = {TuRTLe: A Unified Evaluation of LLMs for RTL Generation},
|
5 |
note = {Submitted for publication as of March 2025.}
|
app.py
CHANGED
@@ -136,7 +136,7 @@ with gr.Blocks(css=custom_css, js=js_func, theme=gr.themes.Default(primary_hue=c
|
|
136 |
with gr.Tabs():
|
137 |
with gr.Tab("Leaderboard"):
|
138 |
with gr.Row():
|
139 |
-
benchmark_radio = gr.Radio(choices=["All"] + benchmarks, label="Select Benchmark", value='VerilogEval S2R', scale=
|
140 |
model_type_radio = gr.Radio(choices=['All', 'General 🟢', 'Coding 🔵', 'RTL-Specific 🔴'], label="Select Model Type", value='All', scale=4)
|
141 |
|
142 |
with gr.Row():
|
|
|
136 |
with gr.Tabs():
|
137 |
with gr.Tab("Leaderboard"):
|
138 |
with gr.Row():
|
139 |
+
benchmark_radio = gr.Radio(choices=["All"] + benchmarks, label="Select Benchmark", value='VerilogEval S2R', scale=6)
|
140 |
model_type_radio = gr.Radio(choices=['All', 'General 🟢', 'Coding 🔵', 'RTL-Specific 🔴'], label="Select Model Type", value='All', scale=4)
|
141 |
|
142 |
with gr.Row():
|