jimneussl commited on
Commit
dabbe65
·
verified ·
1 Parent(s): a1b39f8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md CHANGED
@@ -33,3 +33,37 @@ configs:
33
  - split: train
34
  path: data/train-*
35
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  - split: train
34
  path: data/train-*
35
  ---
36
+
37
+ # NuminaMath 1.5
38
+
39
+ This dataset is a curated subset of the original [AI-MO/NuminaMath-1.5](https://huggingface.co/datasets/AI-MO/NuminaMath-1.5) dataset.
40
+
41
+ ## Filtering Criteria
42
+
43
+ This subset was created by applying the following three conditions to the 'train' split of the original dataset:
44
+
45
+ 1. The problem is valid (`problem_is_valid` == 'Yes')
46
+ 2. The solution is valid (`solution_is_valid` == 'Yes')
47
+ 3. The problem is not synthetic (`synthetic` == False)
48
+
49
+ This process resulted in a dataset of **520k** examples, compared to the original **896k** examples.
50
+
51
+ ## Data Fields
52
+
53
+ The data fields are inherited from the original dataset and include:
54
+ * `problem`: The mathematical problem statement in LaTeX.
55
+ * `solution`: A step-by-step, Chain-of-Thought style solution.
56
+ * `answer`: The final answer to the problem.
57
+ * `problem_type`: The mathematical domain (e.g., Algebra, Geometry).
58
+ * `question_type`: The style of the problem (e.g., proof, math-word-problem).
59
+ * `source`: The origin of the problem (e.g., olympiads, cn_k12).
60
+
61
+ ## How to Use
62
+
63
+ The dataset can be loaded easily using the Hugging Face `datasets` library:
64
+
65
+ ```python
66
+ from datasets import load_dataset
67
+
68
+ dataset = load_dataset("jimneussl/NuminaMath-Clean")
69
+ ```