hgp-lib: Hierarchical Genetic Programming Library for Generating Boolean Rules from Tabular Data
Project description
Hierarchical Genetic Programming Library
A Python library for explainable rule-based classification. It evolves human-readable boolean rule trees via hierarchical genetic programming, with automatic binarization and parallel benchmarking.
Full documentation: https://fii-optim-lab.github.io/hgp-lib/
What it does
hgp_lib evolves boolean rules that classify tabular data.
A rule is a tree of logical operators (And, Or) over literals, for example And(age < 50, Or(income >= 30k, employed)).
Rules are readable, so a trained classifier can be inspected and explained.
The method is genetic programming. A population of candidate rules is scored against the data, the best rules are selected, and crossover and mutation produce the next generation. Over many epochs the population converges toward rules with high fitness. Hierarchical GP extends this with child populations that evolve on sampled subsets of features, then combine into larger rules.
Boolean GP operates on boolean data. Numeric and categorical columns are binarized first, so a numeric feature becomes a set of boolean bins. See Data Preparation for details.
The model is a single boolean rule, so it is readable on its own and needs no separate explanation. See Theory for how the search works and Interpretability for why this matters.
Installation
pip install hgp-lib
# or
pip install 'hgp-lib[dev]'
Quickstart
BooleanRuleClassifier is the fastest way to train an interpretable rule end to end.
It binarizes the raw data for you, evolves a rule, and applies the same binarization when predicting.
The example below is fully runnable on the scikit-learn breast_cancer dataset.
from sklearn.datasets import load_breast_cancer
from sklearn.model_selection import train_test_split
from hgp_lib import BooleanRuleClassifier
from hgp_lib.configs import BooleanGPConfig, TrainerConfig
from hgp_lib.utils.metrics import fast_f1_score
X, y = load_breast_cancer(return_X_y=True, as_frame=True)
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.2, stratify=y, random_state=0
)
X_train, X_val, y_train, y_val = train_test_split(
X_train, y_train, test_size=0.25, stratify=y_train, random_state=0
)
config = TrainerConfig(
gp_config=BooleanGPConfig(score_fn=fast_f1_score), num_epochs=1000, val_every=100
)
clf = BooleanRuleClassifier(config) # StandardBinarizer by default; pass binarizer=... to customize
clf.fit(X_train, y_train, X_val, y_val) # validation data is binarized internally too
predictions = clf.predict(X_test) # raw data is binarized internally
print(clf.format_rule()) # the evolved rule as plain logic
Validation data is optional; when given, it is binarized with the same fitted binarizer and used to track a validation score during training.
clf.format_rule() prints the rule with the binarized column names, so the model reads as plain logic.
To binarize and train manually with GPTrainer, see Training; the Data Preparation guide shows how to avoid leaking data between splits.
Benchmarking
GPBenchmarker runs multiple independent experiments and aggregates the results.
Each run takes a stratified train/test split, performs k-fold cross-validation on the training set, and evaluates the best rule on the held-out test set.
Runs execute in parallel by default.
The benchmarker binarizes data internally, per fold, so you pass a raw pandas.DataFrame and skip manual binarization.
import numpy as np
from sklearn.datasets import load_breast_cancer
from hgp_lib.configs import BenchmarkerConfig, BooleanGPConfig, TrainerConfig
from hgp_lib.benchmarkers import GPBenchmarker
from hgp_lib.utils.metrics import fast_f1_score
X, y = load_breast_cancer(return_X_y=True, as_frame=True)
gp_config = BooleanGPConfig(score_fn=fast_f1_score)
trainer_config = TrainerConfig(gp_config=gp_config, num_epochs=1000, val_every=100)
config = BenchmarkerConfig(
data=X,
labels=y.to_numpy(),
trainer_config=trainer_config,
num_runs=30,
n_folds=5,
test_size=0.2,
n_jobs=-1,
)
benchmarker = GPBenchmarker(config)
result = benchmarker.fit()
test_scores = result.test_scores
print(f"Test score: {np.mean(test_scores):.4f} ± {np.std(test_scores):.4f}")
# Human-readable best rule
print(result.best_rule.to_str(result.best_run.feature_names))
# sklearn-style predict on raw data (binarized internally with the best run's binarizer)
predictions = benchmarker.predict(X)
See Benchmarking for scorer optimization, custom binarizers, and the aggregated result fields.
Customizing the algorithm
The population, mutation, and crossover behavior is configured through factories passed to BooleanGPConfig.
The default factories cover the common case.
To use custom initialization strategies or mutations, subclass a factory and override its construction hook.
from hgp_lib.populations import PopulationGeneratorFactory
factory = PopulationGeneratorFactory(population_size=100)
The Configuring HGP guide covers the built-in factories and hierarchical GP.
The Extending HGP guide covers custom strategies, mutations, and low-level use of BooleanGP directly.
Documentation
- Getting Started
- Theory
- Interpretability
- Data Preparation
- Training
- Benchmarking
- Configuring HGP
- Extending HGP
- Rule Trees
- Experiments
- API Reference
Contributing
See CONTRIBUTING.md.
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
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 hgp_lib-1.1.0.tar.gz.
File metadata
- Download URL: hgp_lib-1.1.0.tar.gz
- Upload date:
- Size: 114.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
566bed2c5b31d766eb4dfdf65e23bd8409ba5707cee7f85515b14d86740999c6
|
|
| MD5 |
e2c8510b3b660470863735c6edceb0c0
|
|
| BLAKE2b-256 |
3c2a0079d67264451934388e3b11f1e212ac1e45d634ba65deec39aa19fa5986
|
Provenance
The following attestation bundles were made for hgp_lib-1.1.0.tar.gz:
Publisher:
python-publish.yml on fii-optim-lab/hgp-lib
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hgp_lib-1.1.0.tar.gz -
Subject digest:
566bed2c5b31d766eb4dfdf65e23bd8409ba5707cee7f85515b14d86740999c6 - Sigstore transparency entry: 2174092073
- Sigstore integration time:
-
Permalink:
fii-optim-lab/hgp-lib@97e076e5cbb09687c0ced49f3bb1a59ddd78e0dd -
Branch / Tag:
refs/tags/1.1.0 - Owner: https://github.com/fii-optim-lab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@97e076e5cbb09687c0ced49f3bb1a59ddd78e0dd -
Trigger Event:
release
-
Statement type:
File details
Details for the file hgp_lib-1.1.0-py3-none-any.whl.
File metadata
- Download URL: hgp_lib-1.1.0-py3-none-any.whl
- Upload date:
- Size: 97.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24c89dd8c6ce77d03d2a193e253c682bacd92e7c8beba0edefd01a6c60387291
|
|
| MD5 |
22a19d2e73ec6667c61d4a484f8b3f14
|
|
| BLAKE2b-256 |
952eaca7e5b9c748031f1292bb2e161b62e5daad1024135b5b5ee654b9ebf64f
|
Provenance
The following attestation bundles were made for hgp_lib-1.1.0-py3-none-any.whl:
Publisher:
python-publish.yml on fii-optim-lab/hgp-lib
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hgp_lib-1.1.0-py3-none-any.whl -
Subject digest:
24c89dd8c6ce77d03d2a193e253c682bacd92e7c8beba0edefd01a6c60387291 - Sigstore transparency entry: 2174092164
- Sigstore integration time:
-
Permalink:
fii-optim-lab/hgp-lib@97e076e5cbb09687c0ced49f3bb1a59ddd78e0dd -
Branch / Tag:
refs/tags/1.1.0 - Owner: https://github.com/fii-optim-lab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@97e076e5cbb09687c0ced49f3bb1a59ddd78e0dd -
Trigger Event:
release
-
Statement type: