Skip to main content

A simple Python package Optimal Counterfactual Explanations in Tree Ensembles

Project description

Optimal Counterfactual Explanations in Tree Ensembles

Maintained License Contributors Stars Watchers Forks PRs

Logo

ocean is a full package dedicated to counterfactual explanations for tree ensembles.
It builds on the paper Optimal Counterfactual Explanations in Tree Ensemble by Axel Parmentier and Thibaut Vidal in the Proceedings of the thirty-eighth International Conference on Machine Learning, 2021, in press. The article is available here.
Beyond the original MIP approach, ocean includes a new constraint programming (CP) method and will grow to cover additional formulations and heuristics.

Installation

You can install the package with the following command:

pip install oceanpy

Note : The MIP method requires the gurobi solver access. You can request for a free academic license here. Once you have installed gurobi, you can install the package with the command above. However, you can also use the CP method without gurobi.

Usage

The package provides multiple classes and functions to wrap the tree ensemble models from the scikit-learn library. A minimal example is provided below:

from sklearn.ensemble import RandomForestClassifier

from ocean import (
    ConstraintProgrammingExplainer,
    MaxSATExplainer,
    MixedIntegerProgramExplainer,
)
from ocean.datasets import load_adult

# Load the adult dataset
(data, target), mapper = load_adult()

# Select an instance to explain from the dataset
x = data.iloc[0].to_frame().T

# Train a random forest classifier
rf = RandomForestClassifier(n_estimators=10, max_depth=3, random_state=42)
rf.fit(data, target)

# Predict the class of the random instance
y = int(rf.predict(x).item())
x = x.to_numpy().flatten()

# Explain the prediction using MIPEXplainer
mip_model = MixedIntegerProgramExplainer(rf, mapper=mapper)
mip_explanation = mip_model.explain(x, y=1 - y, norm=1)

# Explain the prediction using CPEExplainer
cp_model = ConstraintProgrammingExplainer(rf, mapper=mapper)
cp_explanation = cp_model.explain(x, y=1 - y, norm=1)

maxsat_model = MaxSATExplainer(rf, mapper=mapper)
maxsat_explanation = maxsat_model.explain(x, y=1 - y, norm=1)

# Show the explanations and their objective values
print("MIP objective value:", mip_model.get_objective_value())
print("MIP", mip_explanation, "\n")

print("CP objective value:", cp_model.get_objective_value())
print("CP", cp_explanation, "\n")

print("MaxSAT objective value:", maxsat_model.get_objective_value())
print("MaxSAT", maxsat_explanation, "\n")

Expected output:

MIP objective value: 3.0
MIP Explanation:
Age              : 39.0
CapitalGain      : 2174.0
CapitalLoss      : 0
EducationNumber  : 13.0
HoursPerWeek     : 40.0
MaritalStatus    : 3
NativeCountry    : 0
Occupation       : 10
Relationship     : 0
Sex              : 0
WorkClass        : 6 

CP objective value: 3.0
CP Explanation:
Age              : 39.0
CapitalGain      : 2174.0
CapitalLoss      : 0.0
EducationNumber  : 13.0
HoursPerWeek     : 40.0
MaritalStatus    : 3
NativeCountry    : 0
Occupation       : 1
Relationship     : 0
Sex              : 0
WorkClass        : 4

MaxSAT objective value: 3.0
MaxSAT Explanation:
Age              : 39.0
CapitalGain      : 2174.0
CapitalLoss      : 0.0
EducationNumber  : 13.0
HoursPerWeek     : 40.0
MaritalStatus    : 3
NativeCountry    : 0
Occupation       : 1
Relationship     : 0
Sex              : 0
WorkClass        : 4

See the examples folder for more usage examples.

Feature Preview & Roadmap

Area Status Notes / References
MIP formulation ✅ Done Based on Parmentier & Vidal (2020/2021).
Constraint Programming (CP) ✅ Done Based on an upcoming paper.
MaxSAT formulation ✅ Done Based on Raevskaya & Lehtonen (2025).
Heuristics ⏳ Upcoming Fast approximate methods.
Other methods ⏳ Upcoming Additional formulations under exploration.
AdaBoost support ✅ Ready Fully supported in ocean.
Random Forest support ✅ Ready Fully supported in ocean.
XGBoost support ✅ Ready Fully supported in ocean.

Legend: ✅ available · ⏳ upcoming

Stargazers over time

Stargazers over time

References

  • Axel Parmentier and Thibaut Vidal. 2021. Optimal Counterfactual Explanations in Tree Ensembles. In Proceedings of the thirty-eighth International Conference on Machine Learning. PMLR, 8276–8286. Available here.
  • Raevskaya, Alesya & Lehtonen, Tuomo. (2025). Optimal Counterfactual Explanations for Random Forests with MaxSAT. 10.3233/FAIA250895. Available here.

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

oceanpy-2.0.5.tar.gz (187.0 kB view details)

Uploaded Source

Built Distribution

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

oceanpy-2.0.5-py3-none-any.whl (75.2 kB view details)

Uploaded Python 3

File details

Details for the file oceanpy-2.0.5.tar.gz.

File metadata

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

File hashes

Hashes for oceanpy-2.0.5.tar.gz
Algorithm Hash digest
SHA256 2b3b276c5c165719a7b8151e13a5186fef7bd757bf1fd1b870fedd96048d12be
MD5 2b5c7ec9a715185cd3b2d1998875cb63
BLAKE2b-256 ce53af557d730dab6d7a55702af471039a7f0f90d1b13c30f6c04680e2498074

See more details on using hashes here.

Provenance

The following attestation bundles were made for oceanpy-2.0.5.tar.gz:

Publisher: publish.yml on vidalt/OCEAN

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

File details

Details for the file oceanpy-2.0.5-py3-none-any.whl.

File metadata

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

File hashes

Hashes for oceanpy-2.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 a38a4e348165c1ee18174bda99668afcc1c4453214ec14b4e18c9b7c25c2a2de
MD5 4b09e20ff4dca98ef8da7e3cea1aa366
BLAKE2b-256 4d597ea0fd0457e5988d63ef6c335c61e6e79c4f05b9d04ca687730a937bb18e

See more details on using hashes here.

Provenance

The following attestation bundles were made for oceanpy-2.0.5-py3-none-any.whl:

Publisher: publish.yml on vidalt/OCEAN

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