AutoCarver turns raw numeric, categorical, and ordinal columns into optimal, drift-robust, human-readable bins in a few lines of code. Stop losing model performance to suboptimal manual binning — and stop discovering overfit bins in production monitoring.
- Provably optimal — exhaustive search: for a fixed
min_freq,max_n_modand metric (Tschuprow's T by default, or Cramér's V), no other admissible bin combination scores higher. It checked them all so you don't have to. - Robust by construction — every candidate grouping is vetoed unless it holds on a held-out dev set (and optional CV folds), at
fittime rather than in monitoring. - Define → carve → model — declare your
Features,fita carver,transform: the whole feature set is carved in one supervised pass, not one notebook per feature. One carver per target type —BinaryCarver,MulticlassCarver,OrdinalCarver,ContinuousCarver(regression) — all with the identical API. - AI-assisted — a local MCP server lets your LLM assistant qualify and carve columns through tool calls, fully on your machine.
On the Titanic quick start, Fare collapses from 72 pre-carving modalities to 2 bins while its association with survival rises: Tschuprow's T 0.18 raw → 0.29 carved.
Built for credit scoring, fraud detection, and risk modeling.
🆕 What's New
📊 Cross-validated robustness. fit now accepts a cv argument for extra
held-out robustness views on top of (or instead of) a dev set:
carver.fit(X, y, cv=5). Accepts an int, any scikit-learn splitter, or
explicit index pairs, resolved via sklearn.model_selection.check_cv — folds
veto over-fit combinations but never reorder them (ranks stay anchored to the
full train set). See Cross-validation folds.
🤖 LLM & MCP integration. AutoCarver now ships a local Model Context Protocol server: point an MCP-aware assistant (VS Code Copilot, Claude Desktop, Cursor, …) at a data file and let it qualify the columns and carve them against your target through tool calls. The server runs fully on your machine — your dataset is never sent to AutoCarver or any external service (only your own LLM provider sees what the assistant shares). Carving quality depends on the LLM, so have a human confirm the feature definitions before production use. See the LLM & MCP guide.
pip install "autocarver[mcp]"
Once configured, just ask your assistant:
Qualify the columns in
titanic.csvand carve them againstSurvived.
The assistant infers feature types, proposes a carving, and returns the summary table — no code written by hand.
Client config
Add to .vscode/mcp.json (VS Code / GitHub Copilot) or claude_desktop_config.json (Claude Desktop, under mcpServers instead of servers):
{
"servers": {
"autocarver": {
"command": "python",
"args": ["-m", "AutoCarver.mcp"]
}
}
}
If you use uv, point command at uv instead so it resolves the environment for you:
{
"servers": {
"autocarver": {
"command": "uv",
"args": ["run", "python", "-m", "AutoCarver.mcp"]
}
}
}
Install
pip install autocarver
Quick Start
You already have a DataFrame and a target — that's the first box ticked before you start:
- Load data
- Split train / dev
- Declare features by type
- Fit the carver, validated on the dev set
- Inspect the carved bins
- Persist
The rest is the snippet below — binary classification on the Titanic dataset:
from pathlib import Path
import pandas as pd
from sklearn.model_selection import train_test_split
from AutoCarver import BinaryCarver, Features
# 1. Load data
url = "https://web.stanford.edu/class/archive/cs/cs109/cs109.1166/stuff/titanic.csv"
data = pd.read_csv(url)
target = "Survived"
# 2. Train / dev split, stratified on the target
train, dev = train_test_split(data, test_size=0.33, random_state=42, stratify=data[target])
# 3. Declare features by type
features = Features(
categoricals=["Sex"],
numericals=["Age", "Fare", "Siblings/Spouses Aboard", "Parents/Children Aboard"],
ordinals={"Pclass": ["1", "2", "3"]},
)
# 4. Fit the carver (dev set drives the robustness checks)
carver = BinaryCarver(features=features)
train_processed = carver.fit_transform(train, train[target], X_dev=dev, y_dev=dev[target])
dev_processed = carver.transform(dev)
# 5. Inspect the carved buckets, target rate, and association
carver.summary
# 6. Persist for later use
carver.save(Path("titanic_carver.json"))
# 7. Load the carver back in
carver = BinaryCarver.load(Path("titanic_carver.json"))
dev_processed = carver.transform(dev)
min_freq and max_n_mod are the only two knobs that matter to start with — the defaults (0.02 / 5) reflect common scoring practice, and every behavioral toggle lives in one ProcessingConfig object. Scan, adjust, move on.
For multiclass classification use MulticlassCarver (one binning per feature, against the full K-class target) — or OneVsRestCarver for a separate binning per class; for ordinal targets use OrdinalCarver; for regression use ContinuousCarver — the API is identical. To pre-select features by target association and inter-feature redundancy, pipe the carved output through ClassificationSelector or RegressionSelector.
What you get
Two questions worth answering before your next model review: can you defend every bin boundary of your current model to a stakeholder — and can you show each one holds on data it has never seen? AutoCarver makes both a one-liner:
-
No performance left on the table — exhaustive search over admissible bin combinations maximizes Tschuprow's T (default) or Cramér's V: for fixed
min_freq,max_n_modand metric, no other combination scores higher, so you never wonder whether a better grouping existed. -
Stop silent overfitting before production — bins that only exist in your training sample degrade quietly under drift. Every candidate combination is validated on a dev set (and optional CV folds): any whose target rates flip or whose buckets fall below
min_freqis rejected at fit time, not discovered in monitoring. -
First-class ordinal features —
OrdinalDiscretizerenforces your declared modality order, so under-represented levels are merged with their nearest neighbour instead of being collapsed by frequency. -
You are the final auditor —
features.summaryandfeatures.historyexpose the bin definitions, per-bin target rate / frequency, and the full carving trace; disagree with a boundary and you can override it, andtransformapplies your fix like any carved bin:feature = features("Siblings/Spouses Aboard") # any fitted feature; labels are [0, 1, 2] feature.group([1], 2) # merge two bins you consider equivalent
-
Interpretable buckets — human-readable boundaries you can audit, document, and ship to a scorecard.
-
Dimensionality reduction — groups under-represented modalities and caps bins per feature (
max_n_mod), which is especially useful before one-hot encoding. -
Feature pre-selection —
ClassificationSelector/RegressionSelectorrank features by target association and filter on inter-feature correlation.
Titanic Age, one BinaryCarver.fit call: 84 raw values collapse to 3 buckets with a monotonic survival rate.
How does it compare?
| Manual binning | AutoCarver | optbinning | sklearn KBinsDiscretizer | |
|---|---|---|---|---|
| Algorithm | eyeballing distributions, notebook by notebook | exhaustive search over admissible combinations | CART pre-binning, then CP solver (CP-SAT default; MIP optional) | quantile / uniform / k-means — unsupervised |
Optimality for given min_freq / max_n_mod / metric |
none — first acceptable grouping wins | guaranteed — best of every admissible combination | provably optimal over its pre-bins, under its constraints | n/a — no target objective |
| Target types | any, at ~1 feature/hour | binary, multiclass, ordinal, continuous | binary, multiclass, continuous | n/a |
All feature types in one fit (numeric, categorical, ordinal, NaN) |
each feature is its own project | yes — declared ordinal order enforced, NaN as its own modality |
yes via BinningProcess; no first-class ordinal type (user_splits workaround) |
numeric only; NaN raises |
| Held-out dev-set robustness check | rarely — too tedious to script per feature | yes — dev set + optional k-fold CV, built into fit |
no (script CV yourself) | no |
Per-bin stats + carving history after fit |
scattered notebook cells | features.summary, features.history |
binning_table |
no |
All three libraries are sklearn-Pipeline compatible; AutoCarver adds JSON round-trip persistence (carver.save("...json")) and feature pre-selection helpers (ClassificationSelector, RegressionSelector). The full feature matrix, side-by-side runnable snippets, and a "when to pick which" guide live on the comparison page.
Documentation
Full reference, tutorials, and end-to-end notebook examples on ReadTheDocs.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file autocarver-7.6.2.tar.gz.
File metadata
- Download URL: autocarver-7.6.2.tar.gz
- Upload date:
- Size: 169.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9efcbef5d607c469c1d0c06cf3703d582c14b41dd41b43fbebe32b60d4079976
|
|
| MD5 |
04e582b97d2e188e87dc3009b0b0e880
|
|
| BLAKE2b-256 |
8ab9ec60aa8f530fb77600cfb1b1dfcf94b95b9fc2e874fb52b9b854203f5f3f
|
Provenance
The following attestation bundles were made for autocarver-7.6.2.tar.gz:
Publisher:
release.yml on mdefrance/AutoCarver
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
autocarver-7.6.2.tar.gz -
Subject digest:
9efcbef5d607c469c1d0c06cf3703d582c14b41dd41b43fbebe32b60d4079976 - Sigstore transparency entry: 2333883202
- Sigstore integration time:
-
Permalink:
mdefrance/AutoCarver@c5d7e941fb620310dfc1dec158e960c4ff977da4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mdefrance
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@c5d7e941fb620310dfc1dec158e960c4ff977da4 -
Trigger Event:
pull_request
-
Statement type:
File details
Details for the file autocarver-7.6.2-py3-none-any.whl.
File metadata
- Download URL: autocarver-7.6.2-py3-none-any.whl
- Upload date:
- Size: 224.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f259816530c721379b40100e2511565b286d1355728c66b1a199bd531b6d688
|
|
| MD5 |
44f94b4e41f8d9f361da8a6b216e404e
|
|
| BLAKE2b-256 |
ecd43939a17c44573782d390dbf294b4f2a01601f7bc7b11aae77701d1419942
|
Provenance
The following attestation bundles were made for autocarver-7.6.2-py3-none-any.whl:
Publisher:
release.yml on mdefrance/AutoCarver
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
autocarver-7.6.2-py3-none-any.whl -
Subject digest:
1f259816530c721379b40100e2511565b286d1355728c66b1a199bd531b6d688 - Sigstore transparency entry: 2333883205
- Sigstore integration time:
-
Permalink:
mdefrance/AutoCarver@c5d7e941fb620310dfc1dec158e960c4ff977da4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mdefrance
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@c5d7e941fb620310dfc1dec158e960c4ff977da4 -
Trigger Event:
pull_request
-
Statement type: