Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Gregor Betz
commited on
description
Browse files- src/display/about.py +17 -8
src/display/about.py
CHANGED
@@ -28,31 +28,40 @@ TITLE = """<h1 align="center" id="space-title"><code>/\/</code> Open CoT
|
|
28 |
INTRODUCTION_TEXT = """
|
29 |
The `/\/` Open CoT Leaderboard tracks the reasoning skills of LLMs, measured as their ability to generate **effective chain-of-thought reasoning traces**.
|
30 |
|
31 |
-
The leaderboard reports **accuracy gains** achieved by using CoT, i.e.: _accuracy gain Ξ_ = _CoT accuracy_
|
32 |
|
33 |
See the "About" tab for more details and motivation.
|
34 |
"""
|
35 |
|
36 |
# Which evaluations are you running? how can people reproduce what you have?
|
37 |
LLM_BENCHMARKS_TEXT = """
|
38 |
-
## How it works
|
39 |
|
40 |
To assess the reasoning skill of a given `model`, we carry out the following steps for each `task` (test dataset) and different CoT `regimes`. (A CoT `regime` consists in a prompt chain and decoding parameters used to generate a reasoning trace.)
|
41 |
|
42 |
-
1.
|
43 |
-
2.
|
44 |
-
3.
|
45 |
-
4.
|
46 |
|
47 |
-
Each `regime` has a different
|
48 |
|
49 |
|
50 |
## How is it different from other leaderboards?
|
51 |
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
|
54 |
## Test dataset selection (`tasks`)
|
55 |
|
|
|
|
|
56 |
|
57 |
## Reproducibility
|
58 |
To reproduce our results, check out the repository [cot-eval](https://github.com/logikon-ai/cot-eval).
|
|
|
28 |
INTRODUCTION_TEXT = """
|
29 |
The `/\/` Open CoT Leaderboard tracks the reasoning skills of LLMs, measured as their ability to generate **effective chain-of-thought reasoning traces**.
|
30 |
|
31 |
+
The leaderboard reports **accuracy gains** achieved by using CoT, i.e.: _accuracy gain Ξ_ = _CoT accuracy_ β _baseline accuracy_.
|
32 |
|
33 |
See the "About" tab for more details and motivation.
|
34 |
"""
|
35 |
|
36 |
# Which evaluations are you running? how can people reproduce what you have?
|
37 |
LLM_BENCHMARKS_TEXT = """
|
38 |
+
## How it works (roughly)
|
39 |
|
40 |
To assess the reasoning skill of a given `model`, we carry out the following steps for each `task` (test dataset) and different CoT `regimes`. (A CoT `regime` consists in a prompt chain and decoding parameters used to generate a reasoning trace.)
|
41 |
|
42 |
+
1. `model` generates CoT reasoning traces for all problems in the test dataset according to `regime`.
|
43 |
+
2. `model` answers the test dataset problems, we record the resulting _baseline accuracy_.
|
44 |
+
3. `model` answers the test dataset problems _with the reasoning traces appended_ to the prompt, we record the resulting _CoT accuracy_.
|
45 |
+
4. We compute the _accuracy gain Ξ_ = _CoT accuracy_ β _baseline accuracy_ for the given `model`, `task`, and `regime`.
|
46 |
|
47 |
+
Each `regime` has a different _accuracy gain Ξ_, and the leaderboard reports (for every `model`/`task`) the best Ξ achieved by any regime. All models are evaluated with the same set of regimes.
|
48 |
|
49 |
|
50 |
## How is it different from other leaderboards?
|
51 |
|
52 |
+
Performance leaderboards like the [π€ Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard) or [YALL](https://huggingface.co/spaces/mlabonne/Yet_Another_LLM_Leaderboard) do a great job in ranking models according task performance.
|
53 |
+
|
54 |
+
|π€ Open LLM Leaderboard |`/\/` Open CoT Leaderboard |
|
55 |
+
|---|---|
|
56 |
+
|Can `model` solve task?|Does `model` do CoT to improve in task?|
|
57 |
+
|Measures absolute performance.|Measures relative performance gains.|
|
58 |
+
|Covers broad spectrum of `tasks`.|Focuses on critical thinking `tasks`.|
|
59 |
+
|
60 |
|
61 |
## Test dataset selection (`tasks`)
|
62 |
|
63 |
+
The test dataset porblems in the CoT Leaderboard can be solved through clear thinking alone, no specific knowledge is required to do so. They are subsets of the AGIEval benchmark and re-published as `logikon-bench`. The `logiqa` dataset has been newly translated from Chinese to English.
|
64 |
+
|
65 |
|
66 |
## Reproducibility
|
67 |
To reproduce our results, check out the repository [cot-eval](https://github.com/logikon-ai/cot-eval).
|