EtashGuha commited on
Commit
36d3276
·
verified ·
1 Parent(s): 714a533

Upload configuration file

Browse files
Files changed (1) hide show
  1. config/load_in_math_deepmind.yaml +132 -0
config/load_in_math_deepmind.yaml ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ operators:
2
+ - id: load_math_alg
3
+ config:
4
+ type: hf_source
5
+ dataset: deepmind/math_dataset
6
+ split: train
7
+ subset: algebra__linear_2d_composed
8
+ trust_remote_code: True
9
+ - id: load_math_poly_eval
10
+ config:
11
+ type: hf_source
12
+ dataset: deepmind/math_dataset
13
+ split: train
14
+ subset: polynomials__evaluate_composed
15
+ trust_remote_code: True
16
+ - id: load_math_prob_seq
17
+ config:
18
+ type: hf_source
19
+ dataset: deepmind/math_dataset
20
+ split: train
21
+ subset: probability__swr_p_sequence
22
+ trust_remote_code: True
23
+ - id: load_math_prob_level
24
+ config:
25
+ type: hf_source
26
+ dataset: deepmind/math_dataset
27
+ split: train
28
+ subset: probability__swr_p_level_set
29
+ trust_remote_code: True
30
+ - id: load_math_poly_pow
31
+ config:
32
+ type: hf_source
33
+ dataset: deepmind/math_dataset
34
+ split: train
35
+ subset: polynomials__simplify_power
36
+ trust_remote_code: True
37
+ - id: load_math_calc
38
+ config:
39
+ type: hf_source
40
+ dataset: deepmind/math_dataset
41
+ split: train
42
+ subset: calculus__differentiate_composed
43
+ trust_remote_code: True
44
+ - id: clean_up
45
+ config:
46
+ type: function
47
+ function: data_strategies.SeedMathData.utils.deepmind_map
48
+ input_ids:
49
+ - load_math_calc
50
+ - load_math_poly_eval
51
+ - load_math_alg
52
+ - load_math_prob_seq
53
+ - load_math_prob_level
54
+ - load_math_poly_pow
55
+ - id: sample_dataset_pre
56
+ config:
57
+ type: function
58
+ function: data_strategies.commons.uniform_sample_fixed
59
+ function_config:
60
+ num_samples: 1_100_000
61
+ input_ids:
62
+ - clean_up
63
+
64
+ - id: add_source_name
65
+ config:
66
+ type: function
67
+ function: data_strategies.commons.add_constant_columns
68
+ function_config:
69
+ _source: "deepmind/math_dataset"
70
+ input_ids:
71
+ - sample_dataset_pre
72
+ - id: decontaminate
73
+ config:
74
+ type: cpu_function
75
+ sharded: true
76
+ num_shards: 8
77
+ num_cpus: 32
78
+ function: data_strategies._A1_Source.utils.decontaminate_fuzzy_w_ngram
79
+ function_config:
80
+ column: instruction_seed
81
+ eval_datasets:
82
+ - HuggingFaceH4/MATH-500
83
+ - Maxwell-Jia/AIME_2024
84
+ - AI-MO/aimo-validation-amc
85
+ - livecodebench/code_generation_lite
86
+ - mlfoundations-dev/AIME2025_combined
87
+ - cais/hle
88
+ - open-r1/codeforces
89
+ - Idavidrein/gpqa
90
+ - daman1209arora/jeebench
91
+ - mlfoundations-dev/mmlu_pro_eval_full
92
+ - Qwen/CodeElo
93
+ - open-r1/ioi
94
+ eval_columns:
95
+ - problem
96
+ - Problem
97
+ - problem
98
+ - question_content
99
+ - question
100
+ - question
101
+ - description
102
+ - Question
103
+ - question
104
+ - prompt
105
+ - description
106
+ - statement
107
+ eval_splits:
108
+ - test
109
+ - train
110
+ - train
111
+ - test
112
+ - train
113
+ - test
114
+ - test
115
+ - train
116
+ - test
117
+ - test
118
+ - test
119
+ - test
120
+ eval_subsets:
121
+ Idavidrein/gpqa: gpqa_diamond
122
+ similarity_threshold: 75.0
123
+ ngram_size: 13
124
+ input_ids:
125
+ - add_source_name
126
+ - id: sample_dataset
127
+ config:
128
+ type: function
129
+ function: data_strategies.commons.uniform_sample_fixed
130
+ function_config:
131
+ num_samples: 1_000_000
132
+ input_ids: ["decontaminate"]