EtashGuha commited on
Commit
e1ef93d
·
verified ·
1 Parent(s): 975296a

Upload configuration file

Browse files
config/b2_train_fasttext_pos_codeforces_neg_all.yaml ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ operators:
2
+ - id: hf_source_positive_seed
3
+ config:
4
+ type: hf_source
5
+ dataset: open-r1/codeforces
6
+ split: train
7
+
8
+ - id: rename_task_column_positive_seed
9
+ config:
10
+ type: function
11
+ function: data_strategies.commons.force_rename_columns
12
+ function_config:
13
+ column_maps:
14
+ description: instruction_seed
15
+ input_ids:
16
+ - hf_source_positive_seed
17
+
18
+ - id: remove_nones_positive
19
+ config:
20
+ type: function
21
+ function: data_strategies.commons.remove_nones
22
+ function_config:
23
+ column: instruction_seed
24
+ input_ids:
25
+ - rename_task_column_positive_seed
26
+
27
+ - id: decontaminate_positive
28
+ config:
29
+ type: cpu_function
30
+ sharded: false
31
+ num_cpus: 32
32
+ function: data_strategies._A1_Source.utils.decontaminate_fuzzy_w_ngram
33
+ function_config:
34
+ column: instruction_seed
35
+ eval_datasets:
36
+ - HuggingFaceH4/MATH-500
37
+ - Maxwell-Jia/AIME_2024
38
+ - AI-MO/aimo-validation-amc
39
+ - livecodebench/code_generation_lite
40
+ - mlfoundations-dev/AIME2025_combined
41
+ - cais/hle
42
+ - open-r1/codeforces
43
+ - Idavidrein/gpqa
44
+ - daman1209arora/jeebench
45
+ - mlfoundations-dev/mmlu_pro_eval_full
46
+ - Qwen/CodeElo
47
+ - open-r1/ioi
48
+ eval_columns:
49
+ - problem
50
+ - Problem
51
+ - problem
52
+ - question_content
53
+ - question
54
+ - question
55
+ - description
56
+ - Question
57
+ - question
58
+ - prompt
59
+ - description
60
+ - statement
61
+ eval_splits:
62
+ - test
63
+ - train
64
+ - train
65
+ - test
66
+ - train
67
+ - test
68
+ - test
69
+ - train
70
+ - test
71
+ - test
72
+ - test
73
+ - test
74
+ eval_subsets:
75
+ Idavidrein/gpqa: gpqa_diamond
76
+ similarity_threshold: 75.0
77
+ ngram_size: 13
78
+ input_ids:
79
+ - remove_nones_positive
80
+
81
+ - id: hf_source_negative_seed_codereview
82
+ config:
83
+ type: load_preexisting
84
+ framework_name: a1_code_stackexchange_codereview
85
+ - id: hf_source_negative_seed_sql
86
+ config:
87
+ type: load_preexisting
88
+ framework_name: a1_code_sql_create_context
89
+
90
+ - id: decontaminate_negative
91
+ config:
92
+ type: cpu_function
93
+ sharded: false
94
+ num_cpus: 32
95
+ function: data_strategies._A1_Source.utils.decontaminate_fuzzy_w_ngram
96
+ function_config:
97
+ column: instruction_seed
98
+ eval_datasets:
99
+ - HuggingFaceH4/MATH-500
100
+ - Maxwell-Jia/AIME_2024
101
+ - AI-MO/aimo-validation-amc
102
+ - livecodebench/code_generation_lite
103
+ - mlfoundations-dev/AIME2025_combined
104
+ - cais/hle
105
+ - open-r1/codeforces
106
+ - Idavidrein/gpqa
107
+ - daman1209arora/jeebench
108
+ - mlfoundations-dev/mmlu_pro_eval_full
109
+ - Qwen/CodeElo
110
+ - open-r1/ioi
111
+ eval_columns:
112
+ - problem
113
+ - Problem
114
+ - problem
115
+ - question_content
116
+ - question
117
+ - question
118
+ - description
119
+ - Question
120
+ - question
121
+ - prompt
122
+ - description
123
+ - statement
124
+ eval_splits:
125
+ - test
126
+ - train
127
+ - train
128
+ - test
129
+ - train
130
+ - test
131
+ - test
132
+ - train
133
+ - test
134
+ - test
135
+ - test
136
+ - test
137
+ eval_subsets:
138
+ Idavidrein/gpqa: gpqa_diamond
139
+ similarity_threshold: 75.0
140
+ ngram_size: 13
141
+ input_ids:
142
+ - hf_source_negative_seed_codereview
143
+ - hf_source_negative_seed_sql
144
+
145
+ - id: train_fasttext_classifier
146
+ config:
147
+ type: train_fasttext
148
+ text_column: instruction_seed
149
+ positive_input_ids:
150
+ - decontaminate_positive
151
+ negative_input_ids:
152
+ - decontaminate_negative
153
+ dim: 256
154
+ epoch: 3
155
+ lr: 0.1
156
+ word_ngrams: 2
157
+ min_count: 3
158
+ hf_repo_id: mlfoundations-dev/instruction_filtering_fast_text_classifier_b2_code_pos_codeforces_neg_all
159
+ input_ids:
160
+ - decontaminate_positive
161
+ - decontaminate_negative