Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
Β·
daa3ab0
1
Parent(s):
3239883
drop label
Browse files- app.py +2 -2
- src/about.py +2 -2
app.py
CHANGED
@@ -199,10 +199,10 @@ with demo:
|
|
199 |
|
200 |
with gr.Row():
|
201 |
logger.info("Citation")
|
202 |
-
with gr.Accordion(
|
203 |
citation_button = gr.Textbox(
|
204 |
value=CITATION_BUTTON_TEXT,
|
205 |
-
label=CITATION_BUTTON_LABEL,
|
206 |
lines=20,
|
207 |
elem_id="citation-button",
|
208 |
show_copy_button=True,
|
|
|
199 |
|
200 |
with gr.Row():
|
201 |
logger.info("Citation")
|
202 |
+
with gr.Accordion(CITATION_BUTTON_LABEL, open=False):
|
203 |
citation_button = gr.Textbox(
|
204 |
value=CITATION_BUTTON_TEXT,
|
205 |
+
# label=CITATION_BUTTON_LABEL,
|
206 |
lines=20,
|
207 |
elem_id="citation-button",
|
208 |
show_copy_button=True,
|
src/about.py
CHANGED
@@ -26,7 +26,7 @@ TITLE = """<h1 align="center" id="space-title">AAI FormulaOne Leaderboard</h1>""
|
|
26 |
|
27 |
# What does your leaderboard evaluate?
|
28 |
INTRODUCTION_TEXT = """
|
29 |
-
Welcome to the official
|
30 |
|
31 |
**FormulaOne: Measuring the Depth of Algorithmic Reasoning Beyond Competitive Programming** <br>
|
32 |
*Gal Beniamini, Yuval Dor, Alon Vinnikov, Shir Granot Peled, Or Weinstein, Or Sharir, Noam Wies, Tomer Nussbaum, Ido Ben Shaul, Tomer Zekharya, Yoav Levine, Shai Shalev-Shwartz, Amnon Shashua* <br>
|
@@ -74,7 +74,7 @@ Make sure you have followed the above steps first.
|
|
74 |
If everything is done, check you can launch the EleutherAIHarness on your model locally, using the above command without modifications (you can add `--limit` to limit the number of examples per task).
|
75 |
"""
|
76 |
|
77 |
-
CITATION_BUTTON_LABEL = """π How to
|
78 |
CITATION_BUTTON_TEXT = r"""
|
79 |
@misc{beniamini2025formulaonemeasuringdepthalgorithmic,
|
80 |
title={FormulaOne: Measuring the Depth of Algorithmic Reasoning Beyond Competitive Programming},
|
|
|
26 |
|
27 |
# What does your leaderboard evaluate?
|
28 |
INTRODUCTION_TEXT = """
|
29 |
+
Welcome to the official leaderboard for the paper:
|
30 |
|
31 |
**FormulaOne: Measuring the Depth of Algorithmic Reasoning Beyond Competitive Programming** <br>
|
32 |
*Gal Beniamini, Yuval Dor, Alon Vinnikov, Shir Granot Peled, Or Weinstein, Or Sharir, Noam Wies, Tomer Nussbaum, Ido Ben Shaul, Tomer Zekharya, Yoav Levine, Shai Shalev-Shwartz, Amnon Shashua* <br>
|
|
|
74 |
If everything is done, check you can launch the EleutherAIHarness on your model locally, using the above command without modifications (you can add `--limit` to limit the number of examples per task).
|
75 |
"""
|
76 |
|
77 |
+
CITATION_BUTTON_LABEL = """π How to cite FormulaOne"""
|
78 |
CITATION_BUTTON_TEXT = r"""
|
79 |
@misc{beniamini2025formulaonemeasuringdepthalgorithmic,
|
80 |
title={FormulaOne: Measuring the Depth of Algorithmic Reasoning Beyond Competitive Programming},
|