Skip to main content

Cross-validated ensemble prediction with LGBM, XGBoost, and CatBoost — with safe categorical handling, multi-seed averaging, and artifact return.

Project description

cv-score-predict

A robust utility for cross-validated ensemble prediction that performs per‑fold early stopping and uses the early‑stopped models themselves for prediction. Each fold trains LightGBM, XGBoost, or CatBoost with early stopping on its validation split; the resulting estimators generate both out-of-fold (OOF) predictions and averaged test predictions. The function supports custom preprocessing pipelines, dynamic per-fold categorical encoding, repeated CV over multiple seeds, and optional return of trained models and a final preprocessing pipeline fitted on the full dataset.

Designed for kagglers, ML engineers, and data scientists who need reliable, leakage-free CV with minimal boilerplate.


✨ Key Features

  • Per‑fold early stopping: Each fold trains with early stopping on its validation split and uses the early‑stopped estimator for OOF and test predictions.
  • Multi-model ensembling: Train and average predictions from LightGBM, XGBoost, and CatBoost within each fold and then average across folds and seeds.
  • Safe preprocessing: Accepts any processor with fit_transform and transform that returns a pd.DataFrame. The processor is fitted per fold to avoid leakage.
  • Dynamic categorical handling: When process_categorical=True, the function automatically detects object/category columns after the base processor runs, encodes them per fold using OrdinalEncoder(dtype=np.int32) with -1 for missing/unseen values, and converts them to pandas 'category' dtype. Model-specific flags (enable_categorical for XGBoost, cat_features for CatBoost) are set automatically.
  • Repeated CV over seeds: Accepts a single seed or a list of seeds; CV is repeated for each seed and results are averaged for stability.
  • Flexible scoring and thresholding: Custom scoring_dict supported; defaults to ROC AUC for classification and RMSE for regression. For classification you can return probabilities or binary labels via predict_proba and decision_threshold.
  • Artifact return: When return_trained=True, returns:
    • A list of all trained model instances (one per model × fold × seed),
    • A final preprocessing pipeline (base processor + categorical encoder if used), fitted on the full training set, ready for inference on new data.

📥 Parameters

Parameter Type Default Description
X pd.DataFrame Training features.
y Union[pd.Series, np.ndarray] Target values.
X_test Optional[pd.DataFrame] None Test set for final prediction. If None, no test predictions are returned.
pred_type str Either 'classification' or 'regression' (required).
processor Optional[object] None Preprocessing pipeline with fit_transform and transform methods. Must return a pd.DataFrame (use set_output(transform='pandas')). If None, features are passed through unchanged.
process_categorical bool True If True, object/category columns in the processor’s output are encoded per fold with OrdinalEncoder (using -1 for missing/unseen) and converted to pandas 'category' dtype.
models Union[List[str], str] ('lgb', 'xgb', 'cb') Models to ensemble. Supported: 'lgb' (LightGBM), 'xgb' (XGBoost), 'cb' (CatBoost).
params_dict Optional[Dict[str, dict]] None Model-specific hyperparameters. Keys: model names; values: param dicts.
scoring_dict Optional[Dict[str, Callable]] None Metrics for evaluation. Keys: metric names; values: scoring functions (e.g., roc_auc_score). Defaults: {'roc_auc': roc_auc_score} (classification), {'rmse': rmse_fn} (regression).
decision_threshold float 0.5 Threshold to convert probabilities to class labels (classification only).
n_splits int 5 Number of cross-validation folds.
random_state Union[int, List[int]] 42 Seed(s) for reproducibility. If a list, CV is repeated for each seed and results are averaged.
early_stopping_rounds int 50 Early stopping rounds for boosting models (if not overridden in params_dict).
verbose int 2 Logging level: 2 = full per-fold details, 1 = final summary, 0 = silent.
return_trained bool False If True, returns:
• List of trained model instances,
• Final preprocessing pipeline (base processor + categorical encoder) fitted on full X.
predict_proba bool True For classification: if True, return probabilities; if False, return binary labels (using decision_threshold). Ignored for regression.

🚀 Installation

pip install cv-score-predict

Requirements:

  • Python ≥ 3.8
  • Dependencies: numpy, pandas, scikit-learn ≥1.4, lightgbm, xgboost, catboost

📌 Basic Usage

import pandas as pd
from cv_score_predict import cv_score_predict

# Simulate data
X = pd.DataFrame({
    "num": [1, 2, 3, 4, 5, 6, 7, 8],
    "cat": ["A", "B", "A", "C", "B", "A", "C", "D"]
})
y = [0, 1, 0, 1, 1, 0, 1, 0]
X_test = pd.DataFrame({"num": [9, 10], "cat": ["B", "E"]})

# Run CV with 3 seeds → results averaged over seeds & folds
oof_pred, test_pred, _, _ = cv_score_predict(
    X=X,
    y=y,
    X_test=X_test,
    pred_type="classification",
    process_categorical=True,
    models=["lgb", "xgb"],
    random_state=[42, 123, 999],
    n_splits=3,
    verbose=2,
)

Output will show scores per seed, then final averaged metrics.


🔧 Advanced Usage: Reuse Artifacts for New Data

from sklearn.preprocessing import StandardScaler
from sklearn.compose import make_column_transformer
from sklearn.metrics import roc_auc_score, accuracy_score, log_loss
from cv_score_predict import cv_score_predict

# Define a processor that returns a DataFrame
processor = make_column_transformer(
    (StandardScaler(), ["num"]),
    remainder="passthrough"
).set_output(transform='pandas')

scoring_dict = {
    "roc_auc": roc_auc_score,
    "accuracy": accuracy_score,
    "log_loss": log_loss,
}

params_dict = {
    "lgb": {"learning_rate": 0.1, "num_leaves": 100},
    "xgb": {"learning_rate": 0.1, "max_depth": 10},
    "cb": {"learning_rate": 0.1, "depth": 8},
}

# Run CV and return artifacts
oof, _, trained_models, final_pipeline = cv_score_predict(
    X,
    y,
    X_test=None,
    pred_type="classification",
    processor=processor,
    process_categorical=True,
    models=["lgb", "xgb", "cb"],
    params_dict=params_dict,
    scoring_dict=scoring_dict,
    random_state=[42, 123],
    n_splits=5,
    return_trained=True,
)

# Use final_pipeline to preprocess new data
X_new = pd.DataFrame({"num": [7, 8], "cat": [None, "A"]})
X_new_processed = final_pipeline.transform(X_new)

# Predict with all trained models and average
preds = [model.predict_proba(X_new_processed)[:, 1] for model in trained_models]
final_pred = np.mean(preds, axis=0)

✅ The final_pipeline includes your custom processor and the dynamic categorical encoder, fitted on the full training set, ensuring consistent preprocessing for deployment.


📝 Notes

  • Categorical columns are detected after the base processor runs — so even if your processor creates, renames, or changes dtypes of columns, encoding works correctly.
  • Always use .set_output(transform="pandas") in sklearn pipelines to preserve column names and dtypes.
  • The per-fold pipeline ensures no data leakage; the final pipeline enables reproducible inference.

📄 License

This project is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cv_score_predict-0.1.5.tar.gz (14.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cv_score_predict-0.1.5-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file cv_score_predict-0.1.5.tar.gz.

File metadata

  • Download URL: cv_score_predict-0.1.5.tar.gz
  • Upload date:
  • Size: 14.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cv_score_predict-0.1.5.tar.gz
Algorithm Hash digest
SHA256 421afb1a2012d3cfca9125ceab406794f95174fb65dd6013c83db4439d3bcb3e
MD5 51b218e66fe5e9863848b9cacf0a14bf
BLAKE2b-256 1459b03ea85c26d235919ac5c4fb94bc5b96d431eea2791c0697f061160fc538

See more details on using hashes here.

Provenance

The following attestation bundles were made for cv_score_predict-0.1.5.tar.gz:

Publisher: publish.yml on Karabush/cv-score-predict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cv_score_predict-0.1.5-py3-none-any.whl.

File metadata

File hashes

Hashes for cv_score_predict-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 842143a389114549265b53f977e653f432976146c14882809f15466f8c935c2f
MD5 f77da55666db269142e663effba2c142
BLAKE2b-256 7a5665e9617a87213aa97fa6714adebd8711d62f4ffce39faebf74f20baea4e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cv_score_predict-0.1.5-py3-none-any.whl:

Publisher: publish.yml on Karabush/cv-score-predict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page