Randolphzeng
commited on
Commit
•
542fcef
1
Parent(s):
9b8588f
update citation and info
Browse files- src/about.py +33 -5
src/about.py
CHANGED
@@ -21,20 +21,22 @@ NUM_FEWSHOT = 0 # Change with your few shot
|
|
21 |
|
22 |
|
23 |
# Your leaderboard name
|
24 |
-
TITLE = """<h1 align="center" id="space-title">
|
25 |
|
26 |
# What does your leaderboard evaluate?
|
27 |
INTRODUCTION_TEXT = """
|
28 |
-
|
|
|
29 |
"""
|
30 |
|
31 |
# Which evaluations are you running? how can people reproduce what you have?
|
32 |
LLM_BENCHMARKS_TEXT = f"""
|
33 |
## How it works
|
|
|
34 |
|
35 |
## Reproducibility
|
36 |
-
To reproduce our results,
|
37 |
-
|
38 |
"""
|
39 |
|
40 |
EVALUATION_QUEUE_TEXT = """
|
@@ -67,6 +69,32 @@ Make sure you have followed the above steps first.
|
|
67 |
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).
|
68 |
"""
|
69 |
|
70 |
-
CITATION_BUTTON_LABEL = "
|
71 |
CITATION_BUTTON_TEXT = r"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
"""
|
|
|
21 |
|
22 |
|
23 |
# Your leaderboard name
|
24 |
+
TITLE = """<h1 align="center" id="space-title">Meta-Reasoning leaderboard</h1>"""
|
25 |
|
26 |
# What does your leaderboard evaluate?
|
27 |
INTRODUCTION_TEXT = """
|
28 |
+
Welcome to the meta-reasoning leaderboard. This space holds the results from our two meta-reasoning papers "Mr-Ben: A Comprehensive Meta-Reasoning Benchmark for Large Language Models" and "MR-GSM8K: A Meta-Reasoning Benchmark for Large Language Model Evaluation".
|
29 |
+
For both datasets, we have provided a demo evaluate script for you to try out benchmark in at most two commands. We encourage everyone to try out our benchmark in the SOTA models and return its results to us.
|
30 |
"""
|
31 |
|
32 |
# Which evaluations are you running? how can people reproduce what you have?
|
33 |
LLM_BENCHMARKS_TEXT = f"""
|
34 |
## How it works
|
35 |
+
This meta-reasoning paradigm casts LLMs in the role of a teacher, where they assess the reasoning process by evaluating its correctness, analyzing errors, and providing corrections.
|
36 |
|
37 |
## Reproducibility
|
38 |
+
To reproduce our results, please check out our demo scripts [Mr-Ben](https://github.com/dvlab-research/Mr-Ben?tab=readme-ov-file#how-to-evaluate-on-mr-ben) and [MR-GSM8K](https://github.com/dvlab-research/MR-GSM8K?tab=readme-ov-file#evaluate-on-mr-gsm8k).
|
39 |
+
All we need is an access to your evaluated model and a proxy scoring model say GPT-4-Turbo. Then you should be able to reproduce our results directly out of the box.
|
40 |
"""
|
41 |
|
42 |
EVALUATION_QUEUE_TEXT = """
|
|
|
69 |
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).
|
70 |
"""
|
71 |
|
72 |
+
CITATION_BUTTON_LABEL = "If you find our benchmarks helpful, please copy the following snippet to cite our works"
|
73 |
CITATION_BUTTON_TEXT = r"""
|
74 |
+
@article{zeng2024mrben,
|
75 |
+
author = {Zhongshen Zeng and Yinhong Liu and Yingjia Wan and Jingyao Li and Pengguang Chen and Jianbo Dai and Yuxuan Yao and Rongwu Xu and Zehan Qi and Wanru Zhao and Linling Shen and Jianqiao Lu and Haochen Tan and Yukang Chen and Hao Zhang and Zhan Shi and Bailin Wang and Zhijiang Guo and Jiaya Jia},
|
76 |
+
title = {MR-BEN: A Comprehensive Meta-Reasoning Benchmark for Large Language Models},
|
77 |
+
journal = {CoRR},
|
78 |
+
volume = {abs/2406.13975},
|
79 |
+
year = {2024},
|
80 |
+
url = {https://arxiv.org/abs/2406.13975},
|
81 |
+
eprinttype = {arXiv},
|
82 |
+
eprint = {2406.13975}
|
83 |
+
}
|
84 |
+
|
85 |
+
|
86 |
+
@article{DBLP:journals/corr/abs-2312-17080,
|
87 |
+
author = {Zhongshen Zeng and Pengguang Chen and Shu Liu and Haiyun Jiang and Jiaya Jia},
|
88 |
+
title = {MR-GSM8K: A Meta-Reasoning Benchmark for Large Language Model Evaluation},
|
89 |
+
journal = {CoRR},
|
90 |
+
volume = {abs/2312.17080},
|
91 |
+
year = {2023},
|
92 |
+
url = {https://doi.org/10.48550/arXiv.2312.17080},
|
93 |
+
doi = {10.48550/ARXIV.2312.17080},
|
94 |
+
eprinttype = {arXiv},
|
95 |
+
eprint = {2312.17080},
|
96 |
+
biburl = {https://dblp.org/rec/journals/corr/abs-2312-17080.bib},
|
97 |
+
bibsource = {dblp computer science bibliography, https://dblp.org}
|
98 |
+
}
|
99 |
+
|
100 |
"""
|