Spaces:
Running
Running
Commit
·
24c2d4a
1
Parent(s):
f8bd950
add
Browse files- app.py +7 -7
- src/about.py +6 -1
app.py
CHANGED
@@ -214,13 +214,13 @@ with demo:
|
|
214 |
# )
|
215 |
|
216 |
with gr.Row():
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
|
225 |
scheduler = BackgroundScheduler()
|
226 |
scheduler.add_job(restart_space, "interval", seconds=1800)
|
|
|
214 |
# )
|
215 |
|
216 |
with gr.Row():
|
217 |
+
# gr.Markdown()
|
218 |
+
citation_button = gr.Textbox(
|
219 |
+
value=CITATION_BUTTON_TEXT,
|
220 |
+
label=CITATION_BUTTON_LABEL,
|
221 |
+
elem_id="citation-button",
|
222 |
+
show_copy_button=True,
|
223 |
+
)
|
224 |
|
225 |
scheduler = BackgroundScheduler()
|
226 |
scheduler.add_job(restart_space, "interval", seconds=1800)
|
src/about.py
CHANGED
@@ -93,7 +93,7 @@ Make sure you have followed the above steps first.
|
|
93 |
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).
|
94 |
"""
|
95 |
|
96 |
-
CITATION_BUTTON_LABEL = "
|
97 |
CITATION_BUTTON_TEXT = r"""
|
98 |
@article{chen2025lr,
|
99 |
title={LR^2 Bench: Evaluating Long-chain Reflective Reasoning Capabilities of Large Language Models via Constraint Satisfaction Problems},
|
@@ -102,3 +102,8 @@ CITATION_BUTTON_TEXT = r"""
|
|
102 |
year={2025}
|
103 |
}
|
104 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
93 |
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).
|
94 |
"""
|
95 |
|
96 |
+
CITATION_BUTTON_LABEL = "📙 Citation"
|
97 |
CITATION_BUTTON_TEXT = r"""
|
98 |
@article{chen2025lr,
|
99 |
title={LR^2 Bench: Evaluating Long-chain Reflective Reasoning Capabilities of Large Language Models via Constraint Satisfaction Problems},
|
|
|
102 |
year={2025}
|
103 |
}
|
104 |
"""
|
105 |
+
|
106 |
+
|
107 |
+
CITATION = '''
|
108 |
+
##
|
109 |
+
'''
|