Datasets:
File size: 1,462 Bytes
73a1bce 22425ac 73a1bce 22425ac |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
---
language:
- en
pretty_name: Math Notebooks
size_categories:
- 10K<n<100K
---
# Math Notebooks
This repository contains mathematically informative ipython notebooks that were collated from OpenWebMath, RedPajama, and the Algebraic Stack in the [AutoMathText](https://huggingface.co/datasets/math-ai/AutoMathText) effort. Zhang et. al. used Qwen 72B to score text with the following prompt:
```
<system>
You are ChatGPT, equipped with extensive expertise in mathematics and coding, and skilled
in complex reasoning and problem-solving. In the following task, I will present a text excerpt
from a website. Your role is to evaluate whether this text exhibits mathematical intelligence
and if it is suitable for educational purposes in mathematics. Please respond with only YES
or NO
</system>
User: {
“url”: “{url}”,
“text”: “{text}”
}
1. Does the text exhibit elements of mathematical intelligence? Respond with YES or NO
2. Is the text suitable for educational purposes for YOURSELF in the field of mathematics? Respond with YES or NO
```
The responses to these questions were each scored with the function:
$$LM–Score(\cdot) = \frac{exp(logit('YES'))}{exp(logit('YES')) + exp(logit('NO'))}$$
These scores are found in the `meta.lm_q1_score` and `meta.lm_q2_score` columns. A total score (`meta.lm_q1q2_score`) is achieved by taking the product of the two scores.
$$ LM–Score(Q_1, Q_2) = LM–Score(Q_1) \cdot LM–Score(Q_2) $$ |