Commit
·
dcb54b6
1
Parent(s):
67a665c
remove intro text and citation block
Browse files- app.py +0 -11
- src/about.py +0 -1
app.py
CHANGED
@@ -5,8 +5,6 @@ from apscheduler.schedulers.background import BackgroundScheduler
|
|
5 |
from huggingface_hub import snapshot_download
|
6 |
|
7 |
from src.about import (
|
8 |
-
CITATION_BUTTON_LABEL,
|
9 |
-
CITATION_BUTTON_TEXT,
|
10 |
EVALUATION_QUEUE_TEXT,
|
11 |
INTRODUCTION_TEXT,
|
12 |
LLM_BENCHMARKS_TEXT,
|
@@ -340,15 +338,6 @@ with demo:
|
|
340 |
submission_result,
|
341 |
)
|
342 |
|
343 |
-
with gr.Row():
|
344 |
-
with gr.Accordion("📙 Citation", open=False):
|
345 |
-
citation_button = gr.Textbox(
|
346 |
-
value=CITATION_BUTTON_TEXT,
|
347 |
-
label=CITATION_BUTTON_LABEL,
|
348 |
-
lines=20,
|
349 |
-
elem_id="citation-button",
|
350 |
-
show_copy_button=True,
|
351 |
-
)
|
352 |
|
353 |
scheduler = BackgroundScheduler()
|
354 |
scheduler.add_job(restart_space, "interval", seconds=1800)
|
|
|
5 |
from huggingface_hub import snapshot_download
|
6 |
|
7 |
from src.about import (
|
|
|
|
|
8 |
EVALUATION_QUEUE_TEXT,
|
9 |
INTRODUCTION_TEXT,
|
10 |
LLM_BENCHMARKS_TEXT,
|
|
|
338 |
submission_result,
|
339 |
)
|
340 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
|
342 |
scheduler = BackgroundScheduler()
|
343 |
scheduler.add_job(restart_space, "interval", seconds=1800)
|
src/about.py
CHANGED
@@ -30,7 +30,6 @@ TITLE = """<h1 align="center" id="space-title">Icelandic LLM leaderboard</h1>"""
|
|
30 |
|
31 |
# What does your leaderboard evaluate?
|
32 |
INTRODUCTION_TEXT = """
|
33 |
-
Intro text
|
34 |
"""
|
35 |
|
36 |
# Which evaluations are you running? how can people reproduce what you have?
|
|
|
30 |
|
31 |
# What does your leaderboard evaluate?
|
32 |
INTRODUCTION_TEXT = """
|
|
|
33 |
"""
|
34 |
|
35 |
# Which evaluations are you running? how can people reproduce what you have?
|