Adam Jirkovsky
commited on
Commit
·
63d2a5e
1
Parent(s):
5c750e7
Add citation info
Browse files- app.py +1 -1
- src/display/about.py +6 -2
app.py
CHANGED
@@ -382,7 +382,7 @@ with demo:
|
|
382 |
citation_button = gr.Textbox(
|
383 |
value=CITATION_BUTTON_TEXT,
|
384 |
label=CITATION_BUTTON_LABEL,
|
385 |
-
lines=
|
386 |
elem_id="citation-button",
|
387 |
show_copy_button=True,
|
388 |
)
|
|
|
382 |
citation_button = gr.Textbox(
|
383 |
value=CITATION_BUTTON_TEXT,
|
384 |
label=CITATION_BUTTON_LABEL,
|
385 |
+
lines=6,
|
386 |
elem_id="citation-button",
|
387 |
show_copy_button=True,
|
388 |
)
|
src/display/about.py
CHANGED
@@ -145,5 +145,9 @@ EVALUATION_QUEUE_TEXT = """
|
|
145 |
"""
|
146 |
|
147 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
148 |
-
CITATION_BUTTON_TEXT = r"""
|
149 |
-
|
|
|
|
|
|
|
|
|
|
145 |
"""
|
146 |
|
147 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
148 |
+
CITATION_BUTTON_TEXT = r"""@misc{czechbench,
|
149 |
+
title = {CzechBench Leaderboard},
|
150 |
+
author = {Adam Jirkovský and David Adamczyk and Jan Hůla and Jan Šedivý},
|
151 |
+
year = {2024},
|
152 |
+
url = {https://huggingface.co/spaces/CIIRC-NLP/czechbench_leaderboard}
|
153 |
+
}"""
|