brando commited on
Commit
a37065f
·
verified ·
1 Parent(s): 7025ae2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +153 -0
README.md CHANGED
@@ -26,3 +26,156 @@ configs:
26
  - split: test
27
  path: data/test-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  - split: test
27
  path: data/test-*
28
  ---
29
+
30
+ Original: https://huggingface.co/datasets/hendrycks/competition_math main difference is this one has the data not as a zip file so no code exec is needed.
31
+
32
+ # Dataset Card for Mathematics Aptitude Test of Heuristics (MATH) dataset
33
+
34
+ ## Table of Contents
35
+ - [Table of Contents](#table-of-contents)
36
+ - [Dataset Description](#dataset-description)
37
+ - [Dataset Summary](#dataset-summary)
38
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
39
+ - [Languages](#languages)
40
+ - [Dataset Structure](#dataset-structure)
41
+ - [Data Instances](#data-instances)
42
+ - [Data Fields](#data-fields)
43
+ - [Data Splits](#data-splits)
44
+ - [Dataset Creation](#dataset-creation)
45
+ - [Curation Rationale](#curation-rationale)
46
+ - [Source Data](#source-data)
47
+ - [Annotations](#annotations)
48
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
49
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
50
+ - [Social Impact of Dataset](#social-impact-of-dataset)
51
+ - [Discussion of Biases](#discussion-of-biases)
52
+ - [Other Known Limitations](#other-known-limitations)
53
+ - [Additional Information](#additional-information)
54
+ - [Dataset Curators](#dataset-curators)
55
+ - [Licensing Information](#licensing-information)
56
+ - [Citation Information](#citation-information)
57
+ - [Contributions](#contributions)
58
+
59
+ ## Dataset Description
60
+
61
+ - **Homepage:** https://github.com/hendrycks/math
62
+ - **Repository:** https://github.com/hendrycks/math
63
+ - **Paper:** https://arxiv.org/pdf/2103.03874.pdf
64
+ - **Leaderboard:** N/A
65
+ - **Point of Contact:** Dan Hendrycks
66
+
67
+ ### Dataset Summary
68
+
69
+ The Mathematics Aptitude Test of Heuristics (MATH) dataset consists of problems
70
+ from mathematics competitions, including the AMC 10, AMC 12, AIME, and more.
71
+ Each problem in MATH has a full step-by-step solution, which can be used to teach
72
+ models to generate answer derivations and explanations.
73
+
74
+ ### Supported Tasks and Leaderboards
75
+
76
+ [More Information Needed]
77
+
78
+ ### Languages
79
+
80
+ [More Information Needed]
81
+
82
+ ## Dataset Structure
83
+
84
+ ### Data Instances
85
+
86
+ A data instance consists of a competition math problem and its step-by-step solution written in LaTeX and natural language. The step-by-step solution contains the final answer enclosed in LaTeX's `\boxed` tag.
87
+
88
+ An example from the dataset is:
89
+ ```
90
+ {'problem': 'A board game spinner is divided into three parts labeled $A$, $B$ and $C$. The probability of the spinner landing on $A$ is $\\frac{1}{3}$ and the probability of the spinner landing on $B$ is $\\frac{5}{12}$. What is the probability of the spinner landing on $C$? Express your answer as a common fraction.',
91
+ 'level': 'Level 1',
92
+ 'type': 'Counting & Probability',
93
+ 'solution': 'The spinner is guaranteed to land on exactly one of the three regions, so we know that the sum of the probabilities of it landing in each region will be 1. If we let the probability of it landing in region $C$ be $x$, we then have the equation $1 = \\frac{5}{12}+\\frac{1}{3}+x$, from which we have $x=\\boxed{\\frac{1}{4}}$.'}
94
+ ```
95
+
96
+ ### Data Fields
97
+
98
+ * `problem`: The competition math problem.
99
+ * `solution`: The step-by-step solution.
100
+ * `level`: The problem's difficulty level from 'Level 1' to 'Level 5', where a subject's easiest problems for humans are assigned to 'Level 1' and a subject's hardest problems are assigned to 'Level 5'.
101
+ * `type`: The subject of the problem: Algebra, Counting & Probability, Geometry, Intermediate Algebra, Number Theory, Prealgebra and Precalculus.
102
+
103
+ ### Data Splits
104
+
105
+ * train: 7,500 examples
106
+ * test: 5,000 examples
107
+
108
+ ## Dataset Creation
109
+
110
+ ### Curation Rationale
111
+
112
+ [More Information Needed]
113
+
114
+ ### Source Data
115
+
116
+ #### Initial Data Collection and Normalization
117
+
118
+ [More Information Needed]
119
+
120
+ #### Who are the source language producers?
121
+
122
+ [More Information Needed]
123
+
124
+ ### Annotations
125
+
126
+ #### Annotation process
127
+
128
+ [More Information Needed]
129
+
130
+ #### Who are the annotators?
131
+
132
+ [More Information Needed]
133
+
134
+ ### Personal and Sensitive Information
135
+
136
+ [More Information Needed]
137
+
138
+ ## Considerations for Using the Data
139
+
140
+ ### Social Impact of Dataset
141
+
142
+ [More Information Needed]
143
+
144
+ ### Discussion of Biases
145
+
146
+ [More Information Needed]
147
+
148
+ ### Other Known Limitations
149
+
150
+ [More Information Needed]
151
+
152
+ ## Additional Information
153
+
154
+ ### Dataset Curators
155
+
156
+ [More Information Needed]
157
+
158
+ ### Licensing Information
159
+
160
+ https://github.com/hendrycks/math/blob/main/LICENSE
161
+
162
+ ### Citation Information
163
+ ```bibtex
164
+ @article{hendrycksmath2021,
165
+ title={Measuring Mathematical Problem Solving With the MATH Dataset},
166
+ author={Dan Hendrycks
167
+ and Collin Burns
168
+ and Saurav Kadavath
169
+ and Akul Arora
170
+ and Steven Basart
171
+ and Eric Tang
172
+ and Dawn Song
173
+ and Jacob Steinhardt},
174
+ journal={arXiv preprint arXiv:2103.03874},
175
+ year={2021}
176
+ }
177
+ ```
178
+
179
+ ### Contributions
180
+
181
+ Thanks to [@hacobe](https://github.com/hacobe) for adding this dataset.