Spaces:
Running
Running
Danny Liu commited on
Commit ·
a5c141e
1
Parent(s): 10f2787
fix format issue v2
Browse files- app.py +5 -2
- src/display/css_html_js.py +2 -3
app.py
CHANGED
|
@@ -39,8 +39,11 @@ demo = gr.Blocks(css=custom_css)
|
|
| 39 |
with demo:
|
| 40 |
gr.HTML(TITLE)
|
| 41 |
|
| 42 |
-
gr.
|
| 43 |
-
|
|
|
|
|
|
|
|
|
|
| 44 |
|
| 45 |
gr.Markdown("## Benchmark")
|
| 46 |
gr.Markdown("### Model evaluation on VerilogEval-Human V1 benchmark (156 problems, 10 rollouts each)")
|
|
|
|
| 39 |
with demo:
|
| 40 |
gr.HTML(TITLE)
|
| 41 |
|
| 42 |
+
with gr.Row():
|
| 43 |
+
with gr.Column(scale=2):
|
| 44 |
+
gr.Markdown(LLM_BENCHMARKS_TEXT, elem_classes="markdown-text")
|
| 45 |
+
with gr.Column(scale=3):
|
| 46 |
+
gr.Image("taxonomy_overview.png", elem_id="taxonomy-img", show_label=False, show_download_button=False)
|
| 47 |
|
| 48 |
gr.Markdown("## Benchmark")
|
| 49 |
gr.Markdown("### Model evaluation on VerilogEval-Human V1 benchmark (156 problems, 10 rollouts each)")
|
src/display/css_html_js.py
CHANGED
|
@@ -96,9 +96,8 @@ custom_css = """
|
|
| 96 |
}
|
| 97 |
|
| 98 |
#taxonomy-img {
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
display: block !important;
|
| 102 |
}
|
| 103 |
|
| 104 |
#leaderboard-container {
|
|
|
|
| 96 |
}
|
| 97 |
|
| 98 |
#taxonomy-img {
|
| 99 |
+
width: 100% !important;
|
| 100 |
+
max-width: 100% !important;
|
|
|
|
| 101 |
}
|
| 102 |
|
| 103 |
#leaderboard-container {
|