Spaces:
Sleeping
Sleeping
Replace PLOT to SCATTER_PLOT in LEADERBOARD_TAB_BELLOW_PLOT_MARKDOWN constant
Browse files- app.py +2 -2
- content.py +1 -1
app.py
CHANGED
@@ -11,7 +11,7 @@ from content import (
|
|
11 |
HEADER_MARKDOWN,
|
12 |
LEADERBOARD_TAB_TITLE_MARKDOWN,
|
13 |
LEADERBOARD_TAB_BELLOW_TABLE_MARKDOWN,
|
14 |
-
|
15 |
SUBMISSION_TAB_TITLE_MARKDOWN,
|
16 |
MODAL_SUBMIT_MARKDOWN,
|
17 |
SUBMISSION_DETAILS_MARKDOWN,
|
@@ -744,7 +744,7 @@ def gradio_app():
|
|
744 |
label='Scatter plot',
|
745 |
)
|
746 |
|
747 |
-
gr.Markdown(
|
748 |
|
749 |
with gr.Row():
|
750 |
leaderboard_heatmap = gr.Plot(
|
|
|
11 |
HEADER_MARKDOWN,
|
12 |
LEADERBOARD_TAB_TITLE_MARKDOWN,
|
13 |
LEADERBOARD_TAB_BELLOW_TABLE_MARKDOWN,
|
14 |
+
LEADERBOARD_TAB_BELLOW_SCATTER_PLOT_MARKDOWN,
|
15 |
SUBMISSION_TAB_TITLE_MARKDOWN,
|
16 |
MODAL_SUBMIT_MARKDOWN,
|
17 |
SUBMISSION_DETAILS_MARKDOWN,
|
|
|
744 |
label='Scatter plot',
|
745 |
)
|
746 |
|
747 |
+
gr.Markdown(LEADERBOARD_TAB_BELLOW_SCATTER_PLOT_MARKDOWN)
|
748 |
|
749 |
with gr.Row():
|
750 |
leaderboard_heatmap = gr.Plot(
|
content.py
CHANGED
@@ -41,7 +41,7 @@ LEADERBOARD_TAB_BELLOW_TABLE_MARKDOWN = """
|
|
41 |
| FAM | fewshot as multiturn |
|
42 |
"""
|
43 |
|
44 |
-
|
45 |
**Legend**:
|
46 |
- the point symbol is determined by the type of the model ('chat': 'circle', 'pretrained': 'triangle', 'ensemble': 'star')
|
47 |
- the size of the symbol is larger according to the max-centered variance across categories (our measure of prompt stability, see the [paper](http://arxiv.org/abs/2412.17933) for details).
|
|
|
41 |
| FAM | fewshot as multiturn |
|
42 |
"""
|
43 |
|
44 |
+
LEADERBOARD_TAB_BELLOW_SCATTER_PLOT_MARKDOWN = """
|
45 |
**Legend**:
|
46 |
- the point symbol is determined by the type of the model ('chat': 'circle', 'pretrained': 'triangle', 'ensemble': 'star')
|
47 |
- the size of the symbol is larger according to the max-centered variance across categories (our measure of prompt stability, see the [paper](http://arxiv.org/abs/2412.17933) for details).
|