Update app.py
Browse files
app.py
CHANGED
|
@@ -36,7 +36,7 @@ skills = ['MMLU', 'General Knowledge', 'Reasoning & Math', 'Translation (incl Di
|
|
| 36 |
|
| 37 |
|
| 38 |
custom_head = """
|
| 39 |
-
<meta name="description" content="
|
| 40 |
"""
|
| 41 |
|
| 42 |
LEADERBOARD_DF = get_leaderboard_df(EVAL_RESULTS_PATH, EVAL_REQUESTS_PATH, COLS, BENCHMARK_COLS)
|
|
@@ -292,7 +292,7 @@ def init_compare_tab(dataframe):
|
|
| 292 |
return radar_chart
|
| 293 |
|
| 294 |
|
| 295 |
-
demo = gr.Blocks(css=custom_css)
|
| 296 |
|
| 297 |
with demo:
|
| 298 |
|
|
@@ -416,4 +416,4 @@ with demo:
|
|
| 416 |
scheduler = BackgroundScheduler()
|
| 417 |
scheduler.add_job(restart_space, "interval", seconds=3600)
|
| 418 |
scheduler.start()
|
| 419 |
-
demo.queue(default_concurrency_limit=40).launch(ssr_mode=False
|
|
|
|
| 36 |
|
| 37 |
|
| 38 |
custom_head = """
|
| 39 |
+
<meta name="description" content="Arabic LLM Leaderboard - Broad (ABL) is a comprehensive Leaderboard for Arabic LLMs offering innovative visualizations, analytical capabilities, model skill breakdowns, speed comparisons, and contamination detection mechanisms.">
|
| 40 |
"""
|
| 41 |
|
| 42 |
LEADERBOARD_DF = get_leaderboard_df(EVAL_RESULTS_PATH, EVAL_REQUESTS_PATH, COLS, BENCHMARK_COLS)
|
|
|
|
| 292 |
return radar_chart
|
| 293 |
|
| 294 |
|
| 295 |
+
demo = gr.Blocks(css=custom_css, head=custom_head)
|
| 296 |
|
| 297 |
with demo:
|
| 298 |
|
|
|
|
| 416 |
scheduler = BackgroundScheduler()
|
| 417 |
scheduler.add_job(restart_space, "interval", seconds=3600)
|
| 418 |
scheduler.start()
|
| 419 |
+
demo.queue(default_concurrency_limit=40).launch(ssr_mode=False)
|