lucy4 commited on
Commit
1c33672
1 Parent(s): 8e60d7d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +91 -0
README.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: odc-by
3
+ language:
4
+ - en
5
+ tags:
6
+ - education
7
+ - math
8
+ size_categories:
9
+ - n<1K
10
+ ---
11
+
12
+ # Dataset Card for Achieve the Core
13
+
14
+ <!-- Provide a quick summary of the dataset. -->
15
+
16
+ This repository includes Common Core math standards, their descriptions, and metadata obtained from [Achieve the Core](https://github.com/achievethecore/atc-coherence-map/).
17
+
18
+ Example of a math standard:
19
+
20
+ ```
21
+ {
22
+ "id": "K.CC.B.4",
23
+ "description": "Understand the relationship between numbers and quantities; connect counting to cardinality.",
24
+ "source": "Achieve the Core",
25
+ "level": "Standard",
26
+ "cluster_type": "major cluster",
27
+ "aspects": [],
28
+ "parent": "K.CC.B",
29
+ "children": ["K.CC.B.4c", "K.CC.B.4b", "K.CC.B.4a"],
30
+ "connections": {"progress to": ["1.OA.C.5", "K.CC.B.5"], "progress from": [], "related": ["K.CC.A.2", "K.CC.C.6", "K.CC.A.1"]},
31
+ "modeling": false
32
+ }
33
+ ```
34
+
35
+ See [MathFish](https://huggingface.co/datasets/allenai/mathfish) for more details on uses of this data.
36
+
37
+ This data can be used to evaluate language models' abilities to assess whether math problems enable students to learn specific skills/concepts. Code to support this can be found in this [Github repository](https://github.com/allenai/mathfish/tree/main).
38
+
39
+ ## Dataset Details
40
+
41
+ ### Dataset Description
42
+
43
+ <!-- Provide a longer summary of what this dataset is. -->
44
+
45
+ - **Curated by:** Lucy Li, Tal August, Rose E Wang, Luca Soldaini, Courtney Allison, Kyle Lo
46
+ - **Funded by:** The Gates Foundation
47
+ - **Language(s) (NLP):** English
48
+ - **License:** ODC-By 1.0
49
+
50
+ ### Dataset Sources
51
+
52
+ <!-- Provide the basic links for the dataset. -->
53
+
54
+ - **Repository:** [Achieve the Core's Github](https://github.com/achievethecore/atc-coherence-map/)
55
+ - **Website:** [Achieve the Core's Coherence Map](https://tools.achievethecore.org/coherence-map/)
56
+
57
+
58
+ ## Dataset Structure
59
+
60
+ <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
61
+
62
+ This repository includes two key files: `domain_groups.json` and `standards.jsonl`.
63
+
64
+ We created `domain_groups.json` because the "domains" we evaluate with for our tagging task do not have a one-to-one mapping to K-8 domains and high school (HS) categories in Common Core State Standards (CCSS). Some HS categories are equivalent or similar to a domain in K-8, and some differences in K-8 domains are difficult to explain a brief description at the domain-level. Thus, a "domain" in our paper sometimes groups multiple actual CCSS domains/categories. We mostly retain the original CCSS K-8 domains and HS categories, but make exceptions for the following: we group OA (Operations & Algebraic Thinking), EE (Expressions & Equations), and A (HS Algebra) into Operations & Algebra, S (HS Statistics & Probability) and SP (K-8 Statistics & Probability) to \textit{Statistics & Probability}, and finally NS (K-8 The Number System) and N (HS Number and Quantity) to Number Systems and Quantity. Since CCSS and Achieve the Core do not provide brief descriptions of domains, we worked with a curriculum specialist to write domains' descriptions.
65
+
66
+ Within `standards.jsonl`, each line is a standard, sub-standard, cluster, domain, or grade level:
67
+
68
+ ```
69
+ {
70
+ id: '', # e.g. 'K.OA.A.1'
71
+ description: 'description of standard from achieve the core',
72
+ source: 'Achieve the Core',
73
+ level: '', # one of Grade, HS Category, Domain, Cluster, Standard, Sub-standard
74
+ cluster_type: '', # e.g. major cluster, additional cluster, minor cluster
75
+ aspects: [], # a list containing items such as "Application", "conceptual understanding", "Procedural Skill and Fluency"
76
+ parent: '',
77
+ children: [],
78
+ connections: {''progress to': [], 'progress from': [], 'related': []} # standard-level Achieve the Core connections
79
+ modeling: # True or False depending on whether the standard is a "modeling" standard
80
+ }
81
+ ```
82
+
83
+ ## Citation
84
+
85
+ <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
86
+
87
+ BibTeX TBD
88
+
89
+ ## Dataset Card Contact
90
+
91