SAIRcompetition commited on
Commit
d3195f8
·
verified ·
1 Parent(s): 3014ccd

Add official subset metadata for selected problems

Browse files
README.md CHANGED
@@ -43,7 +43,7 @@ Because the full raw dataset is very large, the competition organizers selected
43
  ## Subsets
44
 
45
  - `normal`: 1000 selected problems, chosen programmatically, with 500 ground-truth `TRUE` labels and 500 ground-truth `FALSE` labels
46
- - `hard`: 200 selected problems, hand-selected by human mathematicians, with 74 ground-truth `TRUE` labels and 126 ground-truth `FALSE` labels
47
  - `hard1`: a deduplicated version of the 200-problem `hard` subset, containing 69 unique problems total, with 24 ground-truth `TRUE` labels and 45 ground-truth `FALSE` labels
48
  - `hard2`: 200 selected problems co-curated by human mathematicians and AI, with 100 ground-truth `TRUE` labels and 100 ground-truth `FALSE` labels
49
 
@@ -60,6 +60,23 @@ Each record has the following fields:
60
  - `equation2`: Equation 2
61
  - `answer`: whether Equation 1 implies Equation 2 over all magmas
62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  Records in `hard1` use `hard1_*` IDs with `difficulty: hard`, and records in `hard2` use `hard2_*` IDs with `difficulty: hard`.
64
 
65
  ## Usage
@@ -98,3 +115,7 @@ hard2 = load_dataset(
98
  - `data/hard.jsonl`
99
  - `data/hard1.jsonl`
100
  - `data/hard2.jsonl`
 
 
 
 
 
43
  ## Subsets
44
 
45
  - `normal`: 1000 selected problems, chosen programmatically, with 500 ground-truth `TRUE` labels and 500 ground-truth `FALSE` labels
46
+ - `hard`: 200 selected problems co-curated by human mathematicians and AI, with 74 ground-truth `TRUE` labels and 126 ground-truth `FALSE` labels
47
  - `hard1`: a deduplicated version of the 200-problem `hard` subset, containing 69 unique problems total, with 24 ground-truth `TRUE` labels and 45 ground-truth `FALSE` labels
48
  - `hard2`: 200 selected problems co-curated by human mathematicians and AI, with 100 ground-truth `TRUE` labels and 100 ground-truth `FALSE` labels
49
 
 
60
  - `equation2`: Equation 2
61
  - `answer`: whether Equation 1 implies Equation 2 over all magmas
62
 
63
+ ## Subset Metadata
64
+
65
+ Subset-level metadata for the official released subsets is stored under `metadata/`.
66
+
67
+ Each metadata file contains:
68
+
69
+ - `subset_name`: subset identifier
70
+ - `source`: release source, such as `official`
71
+ - `curators`: list of named curators, if provided
72
+ - `difficulty`: subset difficulty label
73
+ - `problem_count`: total number of problems in the subset
74
+ - `true_count`: number of ground-truth `TRUE` labels
75
+ - `false_count`: number of ground-truth `FALSE` labels
76
+ - `selection_method`: high-level selection method such as `programmatic`, `human`, or `human_ai`
77
+ - `derived_from`: parent subset name if the subset is derived from another subset
78
+ - `notes`: optional explanatory notes
79
+
80
  Records in `hard1` use `hard1_*` IDs with `difficulty: hard`, and records in `hard2` use `hard2_*` IDs with `difficulty: hard`.
81
 
82
  ## Usage
 
115
  - `data/hard.jsonl`
116
  - `data/hard1.jsonl`
117
  - `data/hard2.jsonl`
118
+ - `metadata/normal.json`
119
+ - `metadata/hard.json`
120
+ - `metadata/hard1.json`
121
+ - `metadata/hard2.json`
metadata/hard.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "subset_name": "hard",
3
+ "source": "official",
4
+ "curators": [],
5
+ "difficulty": "hard",
6
+ "problem_count": 200,
7
+ "true_count": 74,
8
+ "false_count": 126,
9
+ "selection_method": "human_ai",
10
+ "derived_from": null,
11
+ "notes": ""
12
+ }
metadata/hard1.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "subset_name": "hard1",
3
+ "source": "official",
4
+ "curators": [],
5
+ "difficulty": "hard",
6
+ "problem_count": 69,
7
+ "true_count": 24,
8
+ "false_count": 45,
9
+ "selection_method": "human_ai",
10
+ "derived_from": "hard",
11
+ "notes": "Deduplicated version of the hard subset; contains no duplicate problems."
12
+ }
metadata/hard2.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "subset_name": "hard2",
3
+ "source": "official",
4
+ "curators": [],
5
+ "difficulty": "hard",
6
+ "problem_count": 200,
7
+ "true_count": 100,
8
+ "false_count": 100,
9
+ "selection_method": "human_ai",
10
+ "derived_from": null,
11
+ "notes": ""
12
+ }
metadata/normal.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "subset_name": "normal",
3
+ "source": "official",
4
+ "curators": [],
5
+ "difficulty": "normal",
6
+ "problem_count": 1000,
7
+ "true_count": 500,
8
+ "false_count": 500,
9
+ "selection_method": "programmatic",
10
+ "derived_from": null,
11
+ "notes": ""
12
+ }