edev2000 commited on
Commit
6b7697a
·
verified ·
1 Parent(s): 538fc1d

New README.md file

Browse files
Files changed (1) hide show
  1. README.md +91 -10
README.md CHANGED
@@ -1,11 +1,92 @@
 
 
 
 
 
 
1
  ---
2
- task_categories:
3
- - multiple-choice
4
- - reinforcement-learning
5
- language:
6
- - en
7
- tags:
8
- - agent
9
- size_categories:
10
- - 1K<n<10K
11
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # AMC12 Dataset (Research-Oriented)
2
+
3
+ A structured dataset derived from the AMC 12 (American Mathematics Competitions), designed for **LLM training, evaluation, and reinforcement learning (RL)** on mathematical reasoning tasks.
4
+
5
+ This repository contains **all AMC 12 problems from 2000–2025**, making it one of the most complete AMC12 datasets available for research.
6
+
7
  ---
8
+
9
+ ## 📘 Introduction
10
+
11
+ The AMC 12 is a **25-question, 75-minute multiple-choice examination** aimed at high school students. Problems are designed to **increase in difficulty progressively**, requiring a combination of algebra, geometry, combinatorics, and number theory reasoning.
12
+
13
+ * **Format:** 25 multiple-choice questions (A–E)
14
+ * **Duration:** 75 minutes
15
+ * **Difficulty progression:** Problems 1 → 25 increase in complexity
16
+ * **Calculator policy:**
17
+
18
+ * Since 2008, calculators are **not permitted**
19
+ * Problems are designed to be solvable without computational aids
20
+
21
+ Top-performing students (~top 6%) are invited to participate in the AIME, making AMC 12 a strong proxy for **high-level mathematical reasoning ability**.
22
+
23
+ ---
24
+
25
+ ## 📦 Dataset Overview
26
+
27
+ Each sample corresponds to a single AMC 12 problem instance, represented in a **structured, model-ready format**.
28
+
29
+ ### Difficulty Structure
30
+
31
+ We adopt a coarse-grained difficulty approximation aligned with problem order:
32
+
33
+ | Problem Range | Difficulty |
34
+ | ------------- | --------------- |
35
+ | 1–10 | Easy–Medium (2) |
36
+ | 11–20 | Medium–Hard (3) |
37
+ | 21–25 | Hard (4) |
38
+
39
+ This structure enables:
40
+
41
+ * Curriculum learning
42
+ * Difficulty-aware evaluation
43
+ * Model capability stratification
44
+
45
+ ---
46
+
47
+ ## 🚀 Why This Dataset?
48
+
49
+ ### Compared to Other Math Datasets
50
+
51
+ * **Not heavily pretrained**
52
+ Unlike datasets such as GSM8K, AMC-style problems are less likely to be memorized by models
53
+
54
+ * **Higher reasoning complexity**
55
+ Problems typically require **multi-step, structured reasoning**, often exceeding datasets like MATH500
56
+
57
+ * **Clean evaluation signal**
58
+
59
+ * Multiple-choice format eliminates ambiguity
60
+ * No unit mismatch issues (e.g., “8 months vs 240 days”)
61
+
62
+ * **Fully verifiable**
63
+ Every problem has a **unique, discrete answer**, ideal for RL reward design
64
+
65
+ ---
66
+
67
+ ### Compared to Other AMC Datasets
68
+
69
+ * **Complete coverage (2000–2025)**
70
+ Includes all AMC12A and AMC12B problems across 25 years
71
+
72
+ * **Fully indexed & traceable**
73
+ Each problem maps directly to its original contest and position
74
+
75
+ * **Structured for ML pipelines**
76
+ Ready for:
77
+
78
+ * RL training (PPO / GRPO)
79
+ * Pass@k evaluation
80
+ * Verifier-based reward systems
81
+
82
+ ---
83
+
84
+ ## 📚 Data Source & Attribution
85
+
86
+ This dataset is curated from publicly available resources, with primary reference to:
87
+
88
+ * Art of Problem Solving
89
+
90
+ All AMC problems are **copyrighted by the Mathematical Association of America (MAA)** under the American Mathematics Competitions program.
91
+
92
+ This repository does **not claim ownership** of the original problem statements and provides them solely for research and educational purposes.