Commit
β’
7a0e5b8
1
Parent(s):
4289e9d
Add description of the Space
Browse files
app.py
CHANGED
@@ -17,7 +17,9 @@ load_results_dataframes = partial(load_results_dataframes, result_paths_per_mode
|
|
17 |
with gr.Blocks(fill_height=True, fill_width=True) as demo:
|
18 |
gr.HTML("<h1 style='text-align: center;'>Compare Results of the π€ Open LLM Leaderboard</h1>")
|
19 |
gr.HTML("<h3 style='text-align: center;'>Select 2 models to load and compare their results</h3>")
|
20 |
-
|
|
|
|
|
21 |
with gr.Row():
|
22 |
with gr.Column():
|
23 |
model_id_1 = gr.Dropdown(choices=list(result_paths_per_model.keys()), label="Models")
|
|
|
17 |
with gr.Blocks(fill_height=True, fill_width=True) as demo:
|
18 |
gr.HTML("<h1 style='text-align: center;'>Compare Results of the π€ Open LLM Leaderboard</h1>")
|
19 |
gr.HTML("<h3 style='text-align: center;'>Select 2 models to load and compare their results</h3>")
|
20 |
+
gr.Markdown("Compare Results of the π€ [Open LLM Leaderboard](https://huggingface.co/spaces/open-llm-leaderboard-old/open_llm_leaderboard). "
|
21 |
+
"Check out the [documentation](https://huggingface.co/docs/leaderboards/open_llm_leaderboard/about) π to find explanations on the evaluations used, their configuration parameters and details on the input/outputs for the models."
|
22 |
+
)
|
23 |
with gr.Row():
|
24 |
with gr.Column():
|
25 |
model_id_1 = gr.Dropdown(choices=list(result_paths_per_model.keys()), label="Models")
|