A simple Python package Optimal Counterfactual Explanations in Tree Ensembles
Project description
Optimal Counterfactual Explanations in Tree Ensembles
This repository provides methods to generate optimal counterfactual explanations in tree ensembles. It is based 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.
Installation
This project requires the gurobi solver. You can request for a free academic license here. Once you have installed gurobi, you can install the package with the following command:
pip install oceanpy
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 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())
# Explain the prediction using MIPEXplainer
model = MixedIntegerProgramExplainer(rf, mapper=mapper)
x = x.to_numpy().flatten()
explanation = model.explain(x, y=1 - y, norm=1)
# Show the explanation
print(explanation)
Expected output:
Explanation:
Age : 39.0
CapitalGain : 2174.0
CapitalLoss : 0
EducationNumber : 13.0
HoursPerWeek : 41.0
MaritalStatus : 3
NativeCountry : 0
Occupation : 1
Relationship : 0
Sex : 0
WorkClass : 6
Project details
Release history Release notifications | RSS feed
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 oceanpy-0.1.1.tar.gz.
File metadata
- Download URL: oceanpy-0.1.1.tar.gz
- Upload date:
- Size: 37.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f92778c43018014d9ba3d8c4fb0d42d7cce31de88d7962107ffe8adfb4f327c0
|
|
| MD5 |
8cda12dbd1dce450c18df6aa7ed1a734
|
|
| BLAKE2b-256 |
f88539f4f33cd3654b3fa1084a11bf6dabd9b065d6b476622b0b66ed09ef4713
|
File details
Details for the file oceanpy-0.1.1-py3-none-any.whl.
File metadata
- Download URL: oceanpy-0.1.1-py3-none-any.whl
- Upload date:
- Size: 28.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cddea604481e8591dc924b5f7073f0ff90ad5d495855071119b81e23de48ab37
|
|
| MD5 |
31cd4b5d288a37c2315cbf3916008759
|
|
| BLAKE2b-256 |
b52a0c0abbec0b95b0df1d4b9746c066592fa765446c224b1e94d18f0540ca4f
|