Data Mixture optimization
bolt.DMCurriculum
Data mixture selection with curriculum.
First set of data mixture is used to train from 0 to 5M tokens. Second set of data mixture is used to train from 5M to 10M tokens.
3 types of datasets are used
- instruction following (IF): allenai/tulu-3-sft-personas-instruction-following
- math: allenai/tulu-3-sft-personas-math
- code: allenai/tulu-3-sft-personas-code
6 parameters
- IF proportion 1 (float, [0, 1])
- Math proportion 1 (float, [0, 1])
- Code proportion 1 (float, [0, 1])
- IF proportion 2 (float, [0, 1])
- Math proportion 2 (float, [0, 1])
- Code proportion 2 (float, [0, 1])
Parameters 1,2,3 must sum to 1. So must parameters 4,5,6. (Simplex)
Single objective that averages
- evaluation results on IFEval (strict)
- evaluation results on MATH-500 (minerva format)
- evaluation results on MBPP plus
Example usage:
import torch
from bolt import DMCurriculum
prob = DMCurriculum(noise_std=0.001)
X = torch.Tensor([[0.15, 0.2, 0.65, 0.6, 0.2, 0.2]])
y = prob(X)
Source code in bolt/problems/data_mixture.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | |
__init__(noise_std=None, negate=False, dtype=torch.double)
Data mixture curriculum optimization for Qwen3-4B-Base
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
noise_std
|
None | float | list[float]
|
Standard deviation of the observation noise. If a list is provided, specifies separate noise standard deviations for each objective in a multiobjective problem. |
None
|
negate
|
bool
|
If True, negate the function. |
False
|
dtype
|
dtype
|
The dtype that is used for the bounds of the function. |
double
|
Source code in bolt/problems/data_mixture.py
bolt.DMCurriculumMO
Data mixture selection with curriculum and multi-objective.
First set of data mixture is used to train from 0 to 5M tokens. Second set of data mixture is used to train from 5M to 10M tokens.
3 types of datasets are used
- instruction following (IF): allenai/tulu-3-sft-personas-instruction-following
- math: allenai/tulu-3-sft-personas-math
- code: allenai/tulu-3-sft-personas-code
6 parameters
- IF proportion 1 (float, [0, 1])
- Math proportion 1 (float, [0, 1])
- Code proportion 1 (float, [0, 1])
- IF proportion 2 (float, [0, 1])
- Math proportion 2 (float, [0, 1])
- Code proportion 2 (float, [0, 1])
Parameters 1,2,3 must sum to 1. So must parameters 4,5,6. (Simplex)
Multiobjective with 3 outputs
- evaluation results on IFEval (strict)
- evaluation results on MATH-500 (minerva format)
- evaluation results on MBPP plus
Example usage:
import torch
from bolt import DMCurriculumMO
prob = DMCurriculumMO(noise_std=0.001)
X = torch.Tensor([[0.15, 0.2, 0.65, 0.6, 0.2, 0.2]])
y = prob(X)
Source code in bolt/problems/data_mixture.py
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | |
__init__(noise_std=None, negate=False, dtype=torch.double)
Data mixture curriculum optimization for Qwen3-4B-Base
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
noise_std
|
None | float | list[float]
|
Standard deviation of the observation noise. If a list is provided, specifies separate noise standard deviations for each objective in a multiobjective problem. |
None
|
negate
|
bool
|
If True, negate the function. |
False
|
dtype
|
dtype
|
The dtype that is used for the bounds of the function. |
double
|
Source code in bolt/problems/data_mixture.py
bolt.DMCurriculumHet
Data mixture selection with curriculum and heteroscedastic noise.
First set of data mixture is used to train from 0 to 5M tokens. Second set of data mixture is used to train from 5M to 10M tokens.
3 types of datasets are used
- instruction following (IF): allenai/tulu-3-sft-personas-instruction-following
- math: allenai/tulu-3-sft-personas-math
- code: allenai/tulu-3-sft-personas-code
6 parameters
- IF proportion 1 (float, [0, 1])
- Math proportion 1 (float, [0, 1])
- Code proportion 1 (float, [0, 1])
- IF proportion 2 (float, [0, 1])
- Math proportion 2 (float, [0, 1])
- Code proportion 2 (float, [0, 1])
Parameters 1,2,3 must sum to 1. So must parameters 4,5,6. (Simplex)
Single objective: evaluation results on MATH-500 (minerva format)
Example usage:
import torch
from bolt import DMCurriculumHet
prob = DMCurriculumHet()
X = torch.Tensor([[0.15, 0.2, 0.65, 0.6, 0.2, 0.2]])
y = prob(X)
Source code in bolt/problems/data_mixture.py
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | |
__init__(noise_std=None, negate=False, dtype=torch.double)
Data mixture curriculum optimization for Qwen3-4B-Base
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
noise_std
|
None | float | list[float]
|
Standard deviation of the observation noise. Ignored in this problem as noise_std is output from noise model. |
None
|
negate
|
bool
|
If True, negate the function. |
False
|
dtype
|
dtype
|
The dtype that is used for the bounds of the function. |
double
|