API: modeling
skyulf.modeling
Modeling module for Skyulf.
BaseModelApplier
Bases: ABC
Source code in skyulf-core/skyulf/modeling/base.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | |
predict(df, model_artifact)
abstractmethod
Generates predictions.
Source code in skyulf-core/skyulf/modeling/base.py
165 166 167 168 169 | |
predict_proba(df, model_artifact)
Generates prediction probabilities if supported. Returns DataFrame where columns are classes.
Source code in skyulf-core/skyulf/modeling/base.py
171 172 173 174 175 176 177 178 | |
BaseModelCalculator
Bases: ABC
Source code in skyulf-core/skyulf/modeling/base.py
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 | |
default_params
property
Default hyperparameters for the model.
problem_type
abstractmethod
property
Returns 'classification', 'regression', or 'clustering'.
build_tuning_search_space(config, strategy)
Hook: let a model auto-build its tuning search space.
Returns an empty dict for plain models (the caller keeps the
user-provided space). Ensembles override this to expand their base
learners' parameter grids into nested <name>__<param> keys.
Source code in skyulf-core/skyulf/modeling/base.py
110 111 112 113 114 115 116 117 | |
fit(X, y, config, progress_callback=None, log_callback=None, validation_data=None, iteration_callback=None)
abstractmethod
Trains the model and returns the fitted model artifact.
The return type is intentionally Any rather than a narrower
TypeVar/Protocol: most calculators (see sklearn_wrapper.py) return a
single fitted estimator, but TuningCalculator
(_tuning/engine.py::fit) returns a (model, tuning_result) tuple
instead — the artifact shape is model-family-dependent, not just
heterogeneous across libraries (sklearn estimator, xgboost booster,
custom wrapper) but also heterogeneous within a single calculator
depending on whether tuning was applied. Consumers already
isinstance(self.model, tuple)-narrow where needed (see
StatefulEstimator.evaluate); a forced union type here wouldn't
remove that narrowing, so Any is the honest, pragmatic choice.
Source code in skyulf-core/skyulf/modeling/base.py
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 | |
prepare_tuning_params(config)
Hook for structural models (e.g. ensembles) to absorb their sub-estimator selection before the tuner builds the base model.
No-op for plain models. Ensembles override this to inject the resolved
estimators (and final_estimator) into :attr:default_params so
the tuner can construct a valid meta-estimator.
Source code in skyulf-core/skyulf/modeling/base.py
100 101 102 103 104 105 106 107 108 | |
BernoulliNBApplier
Bases: SklearnApplier
Bernoulli Naive Bayes Applier.
Source code in skyulf-core/skyulf/modeling/naive_bayes.py
65 66 | |
BernoulliNBCalculator
Bases: SklearnCalculator
Bernoulli Naive Bayes Calculator.
Source code in skyulf-core/skyulf/modeling/naive_bayes.py
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 | |
CalibratedClassifierApplier
Bases: SklearnApplier
Calibrated Classifier Applier (well-calibrated predict_proba).
Source code in skyulf-core/skyulf/modeling/classification.py
189 190 | |
CalibratedClassifierCalculator
Bases: SklearnCalculator
Calibrated Classifier Calculator with a selectable base estimator.
The frontend sends base_estimator as a string key (e.g.
"random_forest"); it is resolved here into a fresh estimator instance
before CalibratedClassifierCV is constructed. Defaults to logistic
regression for backward compatibility.
Source code in skyulf-core/skyulf/modeling/classification.py
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 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 | |
FoldPreprocessor
Bases: Protocol
Structural contract for per-fold preprocessing.
Implementations must be re-fittable: fit_transform may be called
repeatedly (once per fold), and each call must discard any state from
the previous fold. transform applies the artifacts learned by the
most recent fit_transform to held-out rows without learning from
them. y is passed alongside X because target-aware steps
(target encoders, label encoders fitted on the target, resampling)
need it at fit time and may transform it at apply time.
Source code in skyulf-core/skyulf/modeling/fold_preprocessing.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | |
fit_transform(X, y)
Fit on this fold's training rows only; return transformed (X, y).
Source code in skyulf-core/skyulf/modeling/fold_preprocessing.py
27 28 29 | |
transform(X, y)
Apply the fitted artifacts to held-out rows without refitting.
Source code in skyulf-core/skyulf/modeling/fold_preprocessing.py
31 32 33 | |
HyperparameterField
dataclass
Describe a single tunable hyperparameter.
Source code in skyulf-core/skyulf/modeling/hyperparameters/_field.py
9 10 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 | |
KMeansApplier
Bases: _NumericOnlyClusteringApplier
K-Means Applier.
KMeans.predict() genuinely supports out-of-sample cluster assignment
(unlike DBSCAN/Agglomerative, which only implement fit_predict() on the
training data) — this is exactly why K-Means is deployable for inference.
Source code in skyulf-core/skyulf/modeling/clustering.py
134 135 136 137 138 139 140 | |
KMeansCalculator
Bases: _NumericOnlyClusteringCalculatorMixin, SklearnCalculator
K-Means Calculator.
Source code in skyulf-core/skyulf/modeling/clustering.py
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | |
LogisticRegressionApplier
Bases: SklearnApplier
Logistic Regression Applier.
Source code in skyulf-core/skyulf/modeling/classification.py
62 63 | |
LogisticRegressionCalculator
Bases: SklearnCalculator
Logistic Regression Calculator.
Source code in skyulf-core/skyulf/modeling/classification.py
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 | |
MultinomialNBApplier
Bases: SklearnApplier
Multinomial Naive Bayes Applier.
Source code in skyulf-core/skyulf/modeling/naive_bayes.py
29 30 | |
MultinomialNBCalculator
Bases: SklearnCalculator
Multinomial Naive Bayes Calculator.
Source code in skyulf-core/skyulf/modeling/naive_bayes.py
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 | |
RandomForestClassifierApplier
Bases: SklearnApplier
Random Forest Classifier Applier.
Source code in skyulf-core/skyulf/modeling/classification.py
289 290 | |
RandomForestClassifierCalculator
Bases: SklearnCalculator
Random Forest Classifier Calculator.
Source code in skyulf-core/skyulf/modeling/classification.py
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 | |
RandomForestRegressorApplier
Bases: SklearnApplier
Random Forest Regressor Applier.
Source code in skyulf-core/skyulf/modeling/regression.py
111 112 | |
RandomForestRegressorCalculator
Bases: SklearnCalculator
Random Forest Regressor Calculator.
Source code in skyulf-core/skyulf/modeling/regression.py
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 | |
RidgeRegressionApplier
Bases: SklearnApplier
Ridge Regression Applier.
Source code in skyulf-core/skyulf/modeling/regression.py
82 83 | |
RidgeRegressionCalculator
Bases: SklearnCalculator
Ridge Regression Calculator.
Source code in skyulf-core/skyulf/modeling/regression.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | |
SGDClassifierApplier
Bases: SklearnApplier
Stochastic Gradient Descent Classifier Applier.
Source code in skyulf-core/skyulf/modeling/classification.py
705 706 | |
SGDClassifierCalculator
Bases: SklearnCalculator
SGD Classifier Calculator.
Source code in skyulf-core/skyulf/modeling/classification.py
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 | |
SklearnApplier
Bases: BaseModelApplier
Base applier for Scikit-Learn models.
Source code in skyulf-core/skyulf/modeling/sklearn_wrapper.py
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 | |
SklearnCalculator
Bases: BaseModelCalculator
Base calculator for Scikit-Learn models.
Source code in skyulf-core/skyulf/modeling/sklearn_wrapper.py
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 | |
fit(X, y, config, progress_callback=None, log_callback=None, validation_data=None, iteration_callback=None)
Fit the Scikit-Learn model.
Source code in skyulf-core/skyulf/modeling/sklearn_wrapper.py
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 | |
StackingClassifierApplier
Bases: SklearnApplier
Stacking Classifier Applier (meta-learner over base classifiers).
Source code in skyulf-core/skyulf/modeling/ensemble.py
553 554 | |
StackingClassifierCalculator
Bases: _BaseEnsembleCalculator
Stacking Classifier Calculator with selectable base + final learners.
Source code in skyulf-core/skyulf/modeling/ensemble.py
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 | |
StackingRegressorApplier
Bases: SklearnApplier
Stacking Regressor Applier (meta-learner over base regressors).
Source code in skyulf-core/skyulf/modeling/ensemble.py
627 628 | |
StackingRegressorCalculator
Bases: _BaseEnsembleCalculator
Stacking Regressor Calculator with selectable base + final learners.
Source code in skyulf-core/skyulf/modeling/ensemble.py
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 | |
StatefulEstimator
Source code in skyulf-core/skyulf/modeling/base.py
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 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 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 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 | |
cross_validate(dataset, target_column, config, n_folds=5, cv_type='k_fold', shuffle=True, random_state=42, time_column=None, progress_callback=None, log_callback=None, preprocessing=None)
Performs cross-validation on the training split.
Source code in skyulf-core/skyulf/modeling/base.py
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 243 244 245 246 247 248 | |
evaluate(dataset, target_column, job_id='unknown', reference_column='')
Evaluates the model on all splits and returns a detailed report.
reference_column is clustering-only: an optional column (e.g. a
known label like species name) excluded from training features but
used here purely to build a post-hoc cluster/label breakdown.
Source code in skyulf-core/skyulf/modeling/base.py
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 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 | |
fit_predict(dataset, target_column, config, progress_callback=None, log_callback=None, job_id='unknown', preprocessing=None, preprocessing_train=None, preprocessing_validation=None, iteration_callback=None)
Fits the model on training data and returns predictions for all splits.
preprocessing (F-15): forwarded to calculators that
support per-fold refit (TuningCalculator). When set,
preprocessing_train must carry the pre-transform (X, y)
payload the calculator should fit/tune on, so fold slicing stays
aligned with the preprocessor; predictions still run on this
dataset's (post-transform) splits. preprocessing_validation is
the matching pre-transform validation payload for holdout tuning —
dataset.validation is post-transform, so the refit cannot score
against it directly.
Source code in skyulf-core/skyulf/modeling/base.py
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 | |
VotingClassifierApplier
Bases: SklearnApplier
Voting Classifier Applier (hard/soft vote over base classifiers).
Source code in skyulf-core/skyulf/modeling/ensemble.py
516 517 | |
VotingClassifierCalculator
Bases: _BaseEnsembleCalculator
Voting Classifier Calculator with selectable base learners.
Source code in skyulf-core/skyulf/modeling/ensemble.py
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 | |
VotingRegressorApplier
Bases: SklearnApplier
Voting Regressor Applier (averaged predictions over base regressors).
Source code in skyulf-core/skyulf/modeling/ensemble.py
592 593 | |
VotingRegressorCalculator
Bases: _BaseEnsembleCalculator
Voting Regressor Calculator with selectable base learners.
Source code in skyulf-core/skyulf/modeling/ensemble.py
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 | |
apply_thresholds(y_proba, thresholds, classes=None)
Convert predicted probabilities into class predictions using per-class thresholds.
Binary (thresholds is a single float, or a one-entry dict): predicts
the positive (second) class when y_proba[:, 1] >= threshold, else the
first class.
Multiclass (thresholds is a dict covering every class): scaled
argmax — classes[argmax(y_proba / thresholds, axis=1)]. Equal
thresholds across all classes reduce to plain argmax.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
y_proba
|
Any
|
Array-like of shape (n_samples, n_classes), predicted
probabilities in the same column order as |
required |
thresholds
|
dict[Any, float] | float
|
A single float (binary), or a dict mapping every class
label present in |
required |
classes
|
Any
|
Explicit class label order matching |
None
|
Returns:
| Type | Description |
|---|---|
ndarray
|
1D numpy array of predicted class labels, length n_samples. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
Source code in skyulf-core/skyulf/modeling/_evaluation/thresholds.py
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 | |
calculate_classification_metrics(model, X, y, *, X_np=None, y_np=None, predictions=None, proba=None)
Compute classification metrics for predictions.
X_np/y_np/predictions/proba let a caller that already
converted X/y to numpy and/or already called
model.predict()/model.predict_proba() (e.g.
evaluate_classification_model) pass those results straight through,
avoiding a redundant conversion/inference pass on the same data. When
omitted, each is (re)computed here exactly as before.
Source code in skyulf-core/skyulf/modeling/_evaluation/metrics.py
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 | |
calculate_clustering_metrics(X, labels, *, silhouette_sample_size=DEFAULT_SILHOUETTE_SAMPLE_SIZE, random_state=DEFAULT_SILHOUETTE_RANDOM_STATE)
Compute unsupervised clustering-quality metrics for a fitted model's labels.
All three metrics only need the feature matrix and the cluster labels (no ground-truth target), so they can be computed on any split a KMeans model has genuinely predicted on (train/test/validation alike).
Source code in skyulf-core/skyulf/modeling/_evaluation/metrics.py
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 460 461 462 | |
calculate_regression_metrics(model, X, y, *, X_np=None, y_np=None, predictions=None)
Compute regression metrics for predictions.
X_np/y_np/predictions let a caller that already converted
X/y to numpy and/or already called model.predict() (e.g.
evaluate_regression_model) pass those results straight through,
avoiding a redundant conversion/inference pass on the same data.
Source code in skyulf-core/skyulf/modeling/_evaluation/metrics.py
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 | |
compute_shap_explanation(model, X, max_samples=200, max_display_samples=_DEFAULT_MAX_DISPLAY_SAMPLES)
Compute a SHAP explanation for a trained model: a global summary plus a small set of per-sample explanations for richer single-run plots.
Best-effort: returns None (never raises) if shap isn't installed,
the model type is unsupported, or computation fails for any reason.
Returns a dict shaped as
{ "feature_names": [...], "mean_abs_importance": {feature: value, ...}, "samples": [ { "base_value": float, "feature_values": {feature: value, ...}, "shap_values": {feature: value, ...}, }, ... ], "interactions": { "feature_names": [...], # top-K features, or None if unavailable "matrix": [[...], ...], # mean(|interaction value|), same order as feature_names } | None, }
Source code in skyulf-core/skyulf/modeling/_explainability/shap_explanation.py
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 | |
get_default_search_space(model_key, strategy='random')
Return the default search space for model_key.
For grid-based strategies (grid / halving_grid) the trimmed
GRID_SEARCH_SPACES dict is used so the cartesian product stays
manageable. All other strategies (random, halving_random,
optuna) use the richer DEFAULT_SEARCH_SPACES.
Source code in skyulf-core/skyulf/modeling/hyperparameters/_registry.py
503 504 505 506 507 508 509 510 511 512 513 | |
optimize_thresholds(y_true, y_proba, metric, classes=None, strategy=None, grid_points=101)
Search for per-class decision thresholds that maximize metric.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
y_true
|
Any
|
1D array-like of true labels. |
required |
y_proba
|
Any
|
Array-like of shape (n_samples, n_classes), predicted
probabilities in the same column order as |
required |
metric
|
Callable[[Any, Any], float]
|
Callable |
required |
classes
|
Any
|
Explicit class label order matching |
None
|
strategy
|
str | None
|
|
None
|
grid_points
|
int
|
Number of threshold candidates for the |
101
|
Returns:
| Type | Description |
|---|---|
dict[Any, float]
|
Dict mapping each class label to its tuned threshold. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
Source code in skyulf-core/skyulf/modeling/_evaluation/thresholds.py
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 | |
perform_cross_validation(calculator, applier, X, y, config, n_folds=5, cv_type='k_fold', shuffle=True, random_state=DEFAULT_RANDOM_STATE, time_column=None, progress_callback=None, log_callback=None, preprocessing=None)
Performs K-Fold cross-validation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
calculator
|
BaseModelCalculator
|
The model calculator (fit logic). |
required |
applier
|
BaseModelApplier
|
The model applier (predict logic). |
required |
X
|
DataFrame | SkyulfDataFrame
|
Features. |
required |
y
|
Series | Any
|
Target. |
required |
config
|
dict[str, Any]
|
Model configuration. |
required |
n_folds
|
int
|
Number of folds. |
5
|
cv_type
|
str
|
Type of CV. |
'k_fold'
|
shuffle
|
bool
|
Whether to shuffle data before splitting (for KFold/Stratified). |
True
|
random_state
|
int
|
Random seed for shuffling. |
DEFAULT_RANDOM_STATE
|
time_column
|
str | None
|
Optional column name for sorting when using time_series_split. |
None
|
progress_callback
|
Callable[[int, int], None] | None
|
Optional callback(current_fold, total_folds). |
None
|
log_callback
|
Callable[[str], None] | None
|
Optional callback for logging messages. |
None
|
preprocessing
|
FoldPreprocessor | None
|
Optional per-fold preprocessor (F-15). When given, it is
re-fit on each fold's training rows and applied to the held-out rows,
so preprocessing statistics never see held-out data. |
None
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
Dict containing aggregated metrics and per-fold details. |
Source code in skyulf-core/skyulf/modeling/cross_validation.py
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 | |