fixes
Browse files- app.py +2 -2
- src/about.py +1 -2
- src/display/css_html_js.py +2 -1
app.py
CHANGED
@@ -80,7 +80,7 @@ def init_leaderboard(dataframe):
|
|
80 |
wrap=True,
|
81 |
show_fullscreen_button=False,
|
82 |
interactive=False,
|
83 |
-
column_widths=[
|
84 |
max_height=420,
|
85 |
elem_classes="leaderboard_col_style"
|
86 |
)
|
@@ -89,7 +89,7 @@ def init_leaderboard(dataframe):
|
|
89 |
demo = gr.Blocks(css=custom_css)
|
90 |
with demo:
|
91 |
gr.HTML(TITLE, elem_classes="abl_header")
|
92 |
-
gr.Markdown(INTRODUCTION_TEXT, elem_classes="
|
93 |
|
94 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
95 |
with gr.TabItem("🏅 Arabic LLM Leaderboard", elem_id="llm-benchmark-tab-table", id=0):
|
|
|
80 |
wrap=True,
|
81 |
show_fullscreen_button=False,
|
82 |
interactive=False,
|
83 |
+
column_widths=[30,60,40,150,60,60,60],
|
84 |
max_height=420,
|
85 |
elem_classes="leaderboard_col_style"
|
86 |
)
|
|
|
89 |
demo = gr.Blocks(css=custom_css)
|
90 |
with demo:
|
91 |
gr.HTML(TITLE, elem_classes="abl_header")
|
92 |
+
gr.Markdown(INTRODUCTION_TEXT, elem_classes="abl_desc_text")
|
93 |
|
94 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
95 |
with gr.TabItem("🏅 Arabic LLM Leaderboard", elem_id="llm-benchmark-tab-table", id=0):
|
src/about.py
CHANGED
@@ -25,8 +25,7 @@ TITLE = """<div class='abl_header_image'><img src='https://huggingface.co/spaces
|
|
25 |
INTRODUCTION_TEXT = """
|
26 |
<h1 style='width: 100%;text-align: center;' id="space-title">Arabic Board Benchmark (ABL) is the first comprehensive Leaderboard for Arabic LLMs</h1>
|
27 |
ABL is the official leaderboard of <a href='https://huggingface.co/datasets/silma-ai/arabic-broad-benchmark' target='_blank'>Arabic Board Benchmark (ABB)</a>. ABB is a compact, yet comprehensive benchmark aiming to evaluate Arabic LLMs from all angels. The benchmark consists of <b>450</b> high quality questions sampled from <b>63</b> Arabic benchmarking datasets, evaluating <b>22 categories</b> some of which are unique to Arabic language such as Diacritization and Dialects. Find more details in the about Tab.
|
28 |
-
|
29 |
-
<br/>
|
30 |
"""
|
31 |
|
32 |
# Which evaluations are you running? how can people reproduce what you have?
|
|
|
25 |
INTRODUCTION_TEXT = """
|
26 |
<h1 style='width: 100%;text-align: center;' id="space-title">Arabic Board Benchmark (ABL) is the first comprehensive Leaderboard for Arabic LLMs</h1>
|
27 |
ABL is the official leaderboard of <a href='https://huggingface.co/datasets/silma-ai/arabic-broad-benchmark' target='_blank'>Arabic Board Benchmark (ABB)</a>. ABB is a compact, yet comprehensive benchmark aiming to evaluate Arabic LLMs from all angels. The benchmark consists of <b>450</b> high quality questions sampled from <b>63</b> Arabic benchmarking datasets, evaluating <b>22 categories</b> some of which are unique to Arabic language such as Diacritization and Dialects. Find more details in the about Tab.
|
28 |
+
|
|
|
29 |
"""
|
30 |
|
31 |
# Which evaluations are you running? how can people reproduce what you have?
|
src/display/css_html_js.py
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
custom_css = """
|
2 |
|
3 |
-
.
|
4 |
font-size: 16px !important;
|
|
|
5 |
}
|
6 |
|
7 |
#models-to-add-text {
|
|
|
1 |
custom_css = """
|
2 |
|
3 |
+
.abl_desc_text {
|
4 |
font-size: 16px !important;
|
5 |
+
margin-bottom: 5px;
|
6 |
}
|
7 |
|
8 |
#models-to-add-text {
|