Skip to main content

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 -e .

Quickstart

Binarize the data, train a rule with GPTrainer, then use it to predict and print it as plain logic.

from hgp_lib.preprocessing import StandardBinarizer
from hgp_lib.configs import BooleanGPConfig, TrainerConfig
from hgp_lib.trainers import GPTrainer
from hgp_lib.utils.metrics import fast_f1_score

binarizer = StandardBinarizer(num_bins=5)
train_bin = binarizer.fit_transform(train_data, train_labels)
test_bin = binarizer.transform(test_data)

gp = BooleanGPConfig(
    score_fn=fast_f1_score,
    train_data=train_bin.to_numpy(),
    train_labels=train_labels,
)
history = GPTrainer(TrainerConfig(gp_config=gp, num_epochs=1000)).fit()

rule = history.global_best_rule
predictions = rule.evaluate(test_bin.to_numpy())
column_names = dict(enumerate(train_bin.columns))
print(rule.to_str(column_names))

The column_names map turns literal indices back into the binarized column names, so the printed rule reads as plain logic. The Data Preparation guide shows how to use StandardBinarizer without 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
import pandas as pd
from hgp_lib.configs import BenchmarkerConfig, BooleanGPConfig, TrainerConfig
from hgp_lib.benchmarkers import GPBenchmarker

data = pd.DataFrame(...)  # raw features (bool / categorical / numeric)
labels = np.array(...)    # 1-D target array

gp_config = BooleanGPConfig(score_fn=score_fn)
trainer_config = TrainerConfig(gp_config=gp_config, num_epochs=1000, val_every=100)
config = BenchmarkerConfig(
    data=data,
    labels=labels,
    trainer_config=trainer_config,
    num_runs=30,
    n_folds=5,
    test_size=0.2,
    n_jobs=-1,
)
result = GPBenchmarker(config).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))

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

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

hgp_lib-0.0.1.tar.gz (101.7 kB view details)

Uploaded Source

Built Distribution

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

hgp_lib-0.0.1-py3-none-any.whl (86.0 kB view details)

Uploaded Python 3

File details

Details for the file hgp_lib-0.0.1.tar.gz.

File metadata

  • Download URL: hgp_lib-0.0.1.tar.gz
  • Upload date:
  • Size: 101.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hgp_lib-0.0.1.tar.gz
Algorithm Hash digest
SHA256 7936d4d0b7c51fe43c95023e08ea85f473583f82870376dc2cfb5a64b921b608
MD5 f396bb4e643055ac2e5838a733b65164
BLAKE2b-256 0289ac2c01fb979f32dfb09b7994d0260f526b21bdef2a18b28d4a46e362853c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hgp_lib-0.0.1.tar.gz:

Publisher: python-publish.yml on fii-optim-lab/hgp-lib

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

File details

Details for the file hgp_lib-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: hgp_lib-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 86.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hgp_lib-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1bb6e4c7e31c261757e169e66aba5a5eb76bd78952329fed6861f1e5064ff64c
MD5 d3067cb6ef69b2590e2ad9d63ed7630b
BLAKE2b-256 aede280c9080053c67aa1bf1a5345a1aa6b4b1bad826e5f1711cf6c17f3a2c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hgp_lib-0.0.1-py3-none-any.whl:

Publisher: python-publish.yml on fii-optim-lab/hgp-lib

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