Validation Dispatch#
dispatch
#
| FUNCTION | DESCRIPTION |
|---|---|
dispatch_cross_validation |
Low-level framework for parallel K-fold cross-validation with multiple datasets. |
dispatch_bootstrap |
Low-level framework for parallel bootstrap resampling with multiple datasets. |
Classes#
Functions#
dispatch_cross_validation(estimator: Any | dict[str, Any], datasets: dict[str, DataBatch], fit_score_fn: Callable, n_cv: int | Any = 5, shuffle: bool = False, random_state: int | None = None, device: str | torch.device | None = None, n_jobs: int = 1, backend: str = 'threading', verbose: int = 0, pre_dispatch: str = '2*n_jobs', return_required: list[str] = ['score_test', 'score_train'], return_estimator: bool = False, return_times: bool = True, error_score: float | str = 'raise', dtype: torch.dtype = torch.float32) -> dict[str, Any]
#
Low-level framework for parallel K-fold cross-validation with multiple datasets.
Handles dataset validation, fold generation, parallel execution, and result aggregation for custom cross-validation workflows. Users provide a callback function that defines fit/score logic for each fold.
This is the core dispatch function; for single-dataset CV, use cross_validate().
| PARAMETER | DESCRIPTION |
|---|---|
estimator
|
Estimator(s) to validate per fold:
TYPE:
|
datasets
|
Multi-dataset mapping with required constraints:
Example:
TYPE:
|
fit_score_fn
|
Callback with signature:
TYPE:
|
n_cv
|
CV strategy:
TYPE:
|
shuffle
|
Whether to shuffle before splitting. Only used when
TYPE:
|
random_state
|
Random seed for shuffle. Only used when
TYPE:
|
device
|
Device for computation. Default uses device of first dataset. CUDA device disables parallelization (n_jobs -> 1).
TYPE:
|
n_jobs
|
Parallel jobs. -1 uses all processors. Automatically set to 1 when using CUDA device.
TYPE:
|
backend
|
Joblib backend ('threading', 'multiprocessing', 'loky', etc.).
TYPE:
|
verbose
|
Verbosity level (0=silent, higher=more output).
TYPE:
|
pre_dispatch
|
Pre-dispatch strategy for joblib queue.
TYPE:
|
return_required
|
Keys that
TYPE:
|
return_estimator
|
Whether to include fitted fold estimators in output.
TYPE:
|
return_times
|
Whether to include fold execution times in output.
TYPE:
|
error_score
|
Behavior on fit/score errors:
TYPE:
|
dtype
|
Data type for error score tensors.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict[str, Any]
|
Dictionary with keys:
|
| RAISES | DESCRIPTION |
|---|---|
ValueError
|
If datasets empty, sample counts mismatch, or devices differ. |
TypeError
|
If |
Exception
|
Re-raised from |
Notes
Each fold creates a fresh copy of estimator to avoid state leakage between
folds. Exceptions during fit/score are handled per error_score parameter.
Source code in spectre/validation/dispatch.py
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 117 118 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 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | |
dispatch_bootstrap(estimator: Any | dict[str, Any], datasets: dict[str, DataBatch], fit_score_fn: Callable, n_bootstrap: int = 1000, sample_size: float | int | None = None, random_state: int | None = None, device: str | torch.device | None = None, n_jobs: int = 1, backend: str = 'threading', verbose: int = 0, pre_dispatch: str = '2*n_jobs', return_estimator: bool = False, return_times: bool = True, error_score: float | str = 'raise', dtype: torch.dtype = torch.float32) -> dict[str, Any]
#
Low-level framework for parallel bootstrap resampling with multiple datasets.
Performs random sampling with replacement to resample datasets, scores the estimator on each bootstrap sample, and aggregates results. Provides non-parametric confidence intervals and uncertainty estimates.
This is the core dispatch function; for single-dataset bootstrap, use bootstrap().
| PARAMETER | DESCRIPTION |
|---|---|
estimator
|
Fitted estimator(s) to evaluate on bootstrap samples:
TYPE:
|
datasets
|
Multi-dataset mapping with required constraints:
TYPE:
|
fit_score_fn
|
Callback with signature:
TYPE:
|
n_bootstrap
|
Number of bootstrap samples to generate.
TYPE:
|
sample_size
|
Size of each resample. Default is None (full dataset size, standard bootstrap).
TYPE:
|
random_state
|
Random seed for reproducible sampling.
TYPE:
|
device
|
Device for computation. Default uses device of first dataset. CUDA device disables parallelization (n_jobs -> 1).
TYPE:
|
n_jobs
|
Parallel jobs. -1 uses all processors. Automatically set to 1 when using CUDA device.
TYPE:
|
backend
|
Joblib backend ('threading', 'multiprocessing', 'loky', etc.).
TYPE:
|
verbose
|
Verbosity level (0=silent, higher=more output).
TYPE:
|
pre_dispatch
|
Pre-dispatch strategy for joblib queue.
TYPE:
|
return_estimator
|
Whether to include estimator reference in output. (Estimator not copied per sample, unlike CV)
TYPE:
|
return_times
|
Whether to include bootstrap sample execution times in output.
TYPE:
|
error_score
|
Behavior on score errors:
TYPE:
|
dtype
|
Data type for error score tensors.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict[str, Any]
|
Dictionary with keys:
|
| RAISES | DESCRIPTION |
|---|---|
ValueError
|
If datasets empty, sample counts mismatch, or devices differ. |
TypeError
|
If |
Exception
|
Re-raised from |
Notes
Bootstrap sampling with replacement enables estimation of sampling distributions without distributional assumptions. Each sample drawn independently with equal probability, allowing repeats. Estimator is not re-fit; score changes only due to data resampling.
Source code in spectre/validation/dispatch.py
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 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 | |