haoyang
commited on
Commit
β’
a74b942
1
Parent(s):
0dd1325
update params
Browse files- app.py +12 -0
- src/display/about.py +9 -1
app.py
CHANGED
@@ -6,6 +6,8 @@ from huggingface_hub import snapshot_download
|
|
6 |
from src.display.about import (
|
7 |
CITATION_BUTTON_LABEL,
|
8 |
CITATION_BUTTON_TEXT,
|
|
|
|
|
9 |
EVALUATION_QUEUE_TEXT,
|
10 |
INTRODUCTION_TEXT,
|
11 |
LLM_BENCHMARKS_TEXT,
|
@@ -325,6 +327,16 @@ with demo:
|
|
325 |
submission_result,
|
326 |
)
|
327 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
with gr.Row():
|
329 |
with gr.Accordion("π Citation", open=False):
|
330 |
citation_button = gr.Textbox(
|
|
|
6 |
from src.display.about import (
|
7 |
CITATION_BUTTON_LABEL,
|
8 |
CITATION_BUTTON_TEXT,
|
9 |
+
COMMENT_BUTTON_LABEL,
|
10 |
+
COMMENT_BUTTON_TEXT,
|
11 |
EVALUATION_QUEUE_TEXT,
|
12 |
INTRODUCTION_TEXT,
|
13 |
LLM_BENCHMARKS_TEXT,
|
|
|
327 |
submission_result,
|
328 |
)
|
329 |
|
330 |
+
with gr.Row():
|
331 |
+
with gr.Accordion("π Comment", open=False):
|
332 |
+
citation_button = gr.Textbox(
|
333 |
+
value=COMMENT_BUTTON_TEXT,
|
334 |
+
label=COMMENT_BUTTON_LABEL,
|
335 |
+
lines=20,
|
336 |
+
elem_id="comment-button",
|
337 |
+
show_copy_button=False,
|
338 |
+
)
|
339 |
+
|
340 |
with gr.Row():
|
341 |
with gr.Accordion("π Citation", open=False):
|
342 |
citation_button = gr.Textbox(
|
src/display/about.py
CHANGED
@@ -110,7 +110,8 @@ EVALUATION_QUEUE_TEXT = """
|
|
110 |
Currently, we don't support the submission of new evaluations.
|
111 |
"""
|
112 |
|
113 |
-
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
|
|
114 |
CITATION_BUTTON_TEXT = r"""
|
115 |
@misc{fan2023nphardeval,
|
116 |
title={NPHardEval: Dynamic Benchmark on Reasoning Ability of Large Language Models via Complexity Classes},
|
@@ -121,3 +122,10 @@ CITATION_BUTTON_TEXT = r"""
|
|
121 |
primaryClass={cs.AI}
|
122 |
}
|
123 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
Currently, we don't support the submission of new evaluations.
|
111 |
"""
|
112 |
|
113 |
+
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results."
|
114 |
+
|
115 |
CITATION_BUTTON_TEXT = r"""
|
116 |
@misc{fan2023nphardeval,
|
117 |
title={NPHardEval: Dynamic Benchmark on Reasoning Ability of Large Language Models via Complexity Classes},
|
|
|
122 |
primaryClass={cs.AI}
|
123 |
}
|
124 |
"""
|
125 |
+
|
126 |
+
COMMENT_BUTTON_LABEL = "We refer to the following links to mark the model parameters. Contact us if you find any issues."
|
127 |
+
COMMENT_BUTTON_TEXT = """
|
128 |
+
- https://grabon.com/blog/claude-users-statistics/
|
129 |
+
- https://medium.com/@seanbetts/peering-inside-gpt-4-understanding-its-mixture-of-experts-moe-architecture-2a42eb8bdcb3
|
130 |
+
- https://www.cnbc.com/2023/05/16/googles-palm-2-uses-nearly-five-times-more-text-data-than-predecessor.html
|
131 |
+
"""
|