fix multi-line equation

This commit is contained in:
jnanliu 2025-02-25 09:30:21 +00:00
parent fed2df4c3e
commit 516313d42e

View File

@ -101,8 +101,11 @@ afqmc_datasets = [
]
```
> [!TIP]
> Additionally, for binary evaluation metrics (such as accuracy, pass-rate, etc.), you can also set the parameter `k` in conjunction with `n` for [G-Pass@ $k$ ](http://arxiv.org/abs/2412.13147) evaluation. The formula for G-Pass@$k$ is: $$ \text{G-Pass@}k_\tau=\mathbb{E}_{\text{Data}}\left[ \sum_{j=\lceil \tau \cdot k \rceil}^c \frac{{c \choose j} \cdot {n - c \choose k - j}}{{n \choose k}} \right], $$ where $n$ is the number of evaluations, and $c$ is the number of times that passed or were correct out of $n$ runs. An example configuration is as follows:
Additionally, for binary evaluation metrics (such as accuracy, pass-rate, etc.), you can also set the parameter `k` in conjunction with `n` for [G-Pass@ k](http://arxiv.org/abs/2412.13147) evaluation. The formula for G-Pass@$k$ is:
$$
\text{G-Pass@}k_\tau=\mathbb{E}_{\text{Data}}\left[ \sum_{j=\lceil \tau \cdot k \rceil}^c \frac{{c \choose j} \cdot {n - c \choose k - j}}{{n \choose k}} \right],
$$
where $n$ is the number of evaluations, and $c$ is the number of times that passed or were correct out of $n$ runs. An example configuration is as follows:
```python
aime2024_datasets = [