Update space
Browse files- app.py +5 -3
- src/about.py +1 -1
app.py
CHANGED
|
@@ -130,7 +130,7 @@ with demo:
|
|
| 130 |
gr.HTML(SUB_TITLE)
|
| 131 |
gr.HTML(EXTERNAL_LINKS)
|
| 132 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
| 133 |
-
|
| 134 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
| 135 |
|
| 136 |
with gr.TabItem("π
Overview", elem_id="llm-benchmark-tab-table", id=0):
|
|
@@ -313,7 +313,7 @@ with demo:
|
|
| 313 |
gr.Markdown(CURRENT_TEXT, elem_classes="markdown-text")
|
| 314 |
|
| 315 |
|
| 316 |
-
with gr.TabItem("</> Coding", elem_id="coding-
|
| 317 |
CURRENT_TEXT = """
|
| 318 |
# Coming soon!
|
| 319 |
We are working on adding more tasks in coding domains to the leaderboard.
|
|
@@ -332,7 +332,9 @@ with demo:
|
|
| 332 |
|
| 333 |
|
| 334 |
with gr.TabItem("π About", elem_id="llm-benchmark-tab-table", id=6):
|
| 335 |
-
|
|
|
|
|
|
|
| 336 |
|
| 337 |
|
| 338 |
'''
|
|
|
|
| 130 |
gr.HTML(SUB_TITLE)
|
| 131 |
gr.HTML(EXTERNAL_LINKS)
|
| 132 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
| 133 |
+
|
| 134 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
| 135 |
|
| 136 |
with gr.TabItem("π
Overview", elem_id="llm-benchmark-tab-table", id=0):
|
|
|
|
| 313 |
gr.Markdown(CURRENT_TEXT, elem_classes="markdown-text")
|
| 314 |
|
| 315 |
|
| 316 |
+
with gr.TabItem("</> Coding", elem_id="coding-table", id=5):
|
| 317 |
CURRENT_TEXT = """
|
| 318 |
# Coming soon!
|
| 319 |
We are working on adding more tasks in coding domains to the leaderboard.
|
|
|
|
| 332 |
|
| 333 |
|
| 334 |
with gr.TabItem("π About", elem_id="llm-benchmark-tab-table", id=6):
|
| 335 |
+
ABOUT_TEXT = """
|
| 336 |
+
"""
|
| 337 |
+
gr.Markdown(ABOUT_TEXT, elem_classes="markdown-text")
|
| 338 |
|
| 339 |
|
| 340 |
'''
|
src/about.py
CHANGED
|
@@ -69,7 +69,7 @@ EXTERNAL_LINKS = """
|
|
| 69 |
|
| 70 |
# What does your leaderboard evaluate?
|
| 71 |
INTRODUCTION_TEXT = """
|
| 72 |
-
Decentralized Arena automates and scales "Chatbot Arena" for LLM evaluation across various fine-grained dimensions
|
| 73 |
(e.g., math β algebra, geometry, probability; logical reasoning, social reasoning, biology, chemistry, β¦).
|
| 74 |
The evaluation is decentralized and democratic, with all LLMs participating in evaluating others.
|
| 75 |
It achieves a 95\% correlation with Chatbot Arena's overall rankings, while being fully transparent and reproducible.
|
|
|
|
| 69 |
|
| 70 |
# What does your leaderboard evaluate?
|
| 71 |
INTRODUCTION_TEXT = """
|
| 72 |
+
**Decentralized Arena** automates and scales "Chatbot Arena" for LLM evaluation across various fine-grained dimensions
|
| 73 |
(e.g., math β algebra, geometry, probability; logical reasoning, social reasoning, biology, chemistry, β¦).
|
| 74 |
The evaluation is decentralized and democratic, with all LLMs participating in evaluating others.
|
| 75 |
It achieves a 95\% correlation with Chatbot Arena's overall rankings, while being fully transparent and reproducible.
|