casey-martin commited on
Commit
22425ac
·
verified ·
1 Parent(s): 73a1bce

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -101
README.md CHANGED
@@ -1,103 +1,30 @@
1
  ---
2
- configs:
3
- - config_name: default
4
- data_files:
5
- - split: train
6
- path: data/train-*
7
- - split: validation
8
- path: data/validation-*
9
- - split: test
10
- path: data/test-*
11
- dataset_info:
12
- features:
13
- - name: text
14
- dtype: string
15
- - name: meta.hexsha
16
- dtype: string
17
- - name: meta.size
18
- dtype: int64
19
- - name: meta.ext
20
- dtype: string
21
- - name: meta.lang
22
- dtype: string
23
- - name: meta.max_stars_repo_path
24
- dtype: string
25
- - name: meta.max_stars_repo_name
26
- dtype: string
27
- - name: meta.max_stars_repo_head_hexsha
28
- dtype: string
29
- - name: meta.max_stars_repo_licenses
30
- sequence: string
31
- - name: meta.max_stars_count
32
- dtype: int64
33
- - name: meta.max_stars_repo_stars_event_min_datetime
34
- dtype: string
35
- - name: meta.max_stars_repo_stars_event_max_datetime
36
- dtype: string
37
- - name: meta.max_issues_repo_path
38
- dtype: string
39
- - name: meta.max_issues_repo_name
40
- dtype: string
41
- - name: meta.max_issues_repo_head_hexsha
42
- dtype: string
43
- - name: meta.max_issues_repo_licenses
44
- sequence: string
45
- - name: meta.max_issues_count
46
- dtype: int64
47
- - name: meta.max_issues_repo_issues_event_min_datetime
48
- dtype: string
49
- - name: meta.max_issues_repo_issues_event_max_datetime
50
- dtype: string
51
- - name: meta.max_forks_repo_path
52
- dtype: string
53
- - name: meta.max_forks_repo_name
54
- dtype: string
55
- - name: meta.max_forks_repo_head_hexsha
56
- dtype: string
57
- - name: meta.max_forks_repo_licenses
58
- sequence: string
59
- - name: meta.max_forks_count
60
- dtype: int64
61
- - name: meta.max_forks_repo_forks_event_min_datetime
62
- dtype: string
63
- - name: meta.max_forks_repo_forks_event_max_datetime
64
- dtype: string
65
- - name: meta.avg_line_length
66
- dtype: float64
67
- - name: meta.max_line_length
68
- dtype: int64
69
- - name: meta.alphanum_fraction
70
- dtype: float64
71
- - name: meta.converted
72
- dtype: bool
73
- - name: meta.num_tokens
74
- dtype: int64
75
- - name: meta.lm_name
76
- dtype: string
77
- - name: meta.lm_label
78
- dtype: string
79
- - name: meta.lm_q1_score
80
- dtype: float64
81
- - name: meta.lm_q2_score
82
- dtype: float64
83
- - name: meta.lm_q1q2_score
84
- dtype: float64
85
- - name: text_lang
86
- dtype: string
87
- - name: text_lang_conf
88
- dtype: float64
89
- - name: label
90
- dtype: float64
91
- splits:
92
- - name: train
93
- num_bytes: 259675872.10744715
94
- num_examples: 14459
95
- - name: validation
96
- num_bytes: 32452749.214894325
97
- num_examples: 1807
98
- - name: test
99
- num_bytes: 32470708.677658513
100
- num_examples: 1808
101
- download_size: 142960556
102
- dataset_size: 324599329.99999994
103
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ pretty_name: Math Notebooks
5
+ size_categories:
6
+ - 10K<n<100K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ---
8
+ # Math Notebooks
9
+ 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:
10
+ ```
11
+ <system>
12
+ You are ChatGPT, equipped with extensive expertise in mathematics and coding, and skilled
13
+ in complex reasoning and problem-solving. In the following task, I will present a text excerpt
14
+ from a website. Your role is to evaluate whether this text exhibits mathematical intelligence
15
+ and if it is suitable for educational purposes in mathematics. Please respond with only YES
16
+ or NO
17
+ </system>
18
+ User: {
19
+ “url”: “{url}”,
20
+ “text”: “{text}”
21
+ }
22
+ 1. Does the text exhibit elements of mathematical intelligence? Respond with YES or NO
23
+ 2. Is the text suitable for educational purposes for YOURSELF in the field of mathematics? Respond with YES or NO
24
+ ```
25
+
26
+ The responses to these questions were each scored with the function:
27
+ $$LM–Score(\cdot) = \frac{exp(logit('YES'))}{exp(logit('YES')) + exp(logit('NO'))}$$
28
+
29
+ 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.
30
+ $$ LM–Score(Q_1, Q_2) = LM–Score(Q_1) \cdot LM–Score(Q_2) $$