Skip to main content

A collection of utility functions designed to simplify training machine learning models for Kaggle competitions.

Project description

Kaggle Toolbox

Koolbox is a collection of helper functions and utilities designed to simplify training machine learning models in Kaggle competitions. This library abstracts away repetitive boilerplate code, allowing competitors to focus on more important tasks.

Installation

pip install koolbox

Usage

Trainer

import pandas as pd
from sklearn.model_selection import KFold
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import roc_auc_score

from koolbox import Trainer

X = pd.DataFrame(...)
y = pd.Series(...)

trainer = Trainer(
    estimator=RandomForestClassifier(random_state=42),
    cv=KFold(n_splits=5, shuffle=True, random_state=42),
    metric=roc_auc_score,
    task="binary",
    verbose=True
)

trainer.fit(X, y)

X_test = pd.DataFrame(...)
preds = trainer.predict(X_test)

oof_preds = trainer.oof_preds
overall_score = trainer.overall_score
fold_scores = trainer.fold_scores

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

koolbox-0.1.2.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

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

koolbox-0.1.2-py3-none-any.whl (11.2 kB view details)

Uploaded Python 3

File details

Details for the file koolbox-0.1.2.tar.gz.

File metadata

  • Download URL: koolbox-0.1.2.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for koolbox-0.1.2.tar.gz
Algorithm Hash digest
SHA256 389c1e5147ca7d04231ceb9d1a852e5486d6222365855ce0bceb5370957694c4
MD5 d7119a30aaff1353de071b464f445756
BLAKE2b-256 eb101738952a0b27cc0b0d96c73d75be8db24ce2501233815178d8ed6dbf2ff5

See more details on using hashes here.

Provenance

The following attestation bundles were made for koolbox-0.1.2.tar.gz:

Publisher: publish.yml on ravaghi/koolbox

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

File details

Details for the file koolbox-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: koolbox-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 11.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for koolbox-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b796e272a0b60264d37183f3b460ac3c54bf6e734a316a400ab3422f69f0a29c
MD5 528bd38cebf5e05708134402678f83bf
BLAKE2b-256 724ac327050914d46efa8a7c519ca2582b2077c04f582e0dc7da39318b160e9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for koolbox-0.1.2-py3-none-any.whl:

Publisher: publish.yml on ravaghi/koolbox

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