A package for DeltaXplainer model implemented from the paper https://arxiv.org/pdf/2309.17095.pdf
Project description
DeltaXplainer, XAI model comparison and explanations
(documentation not up to date)
Package for DeltaXplainer model implemented from the paper Dynamic Interpretability for Model Comparison via Decision Rules, A Rida, MJ Lesot, X Renard, C Marsala, DynXAI workshop at ECML PKDD 2023, https://arxiv.org/pdf/2309.17095.pdf
DeltaXplainer is an algortihm aiming at explaining differences between two black box binary classifiers.
The models takes as input the two models to compare and generate explanations. The package is originally built to support comparison of sklearn models but any object with a predict
method doing binary classification should work.
The explanations are provided using decision rules. We propose to answer to the question "Why are the models different?" by showing "Where" they differ.
The explanations are a list of segments where the two black box models make different predictions.
Ideas for future improvements include considering other explanations format and ways to extract knowledge from the delta model.
Installation
pip install deltaxplainer
Getting Started
In order to have a hands on example please refer to this notebook
Generating Explanations
Assuming you want to explain differences between classifer_a
and classifer_b
trained on X_a, y_a
and X_b, y_b
For more details on how the method works please refer to the original paper.
from deltaxplainer import DeltaXplainer
X_delta_train = pd.concat([X_a, X_b])
delta_model = DeltaXplainer(X_delta_train, model_a, model_b).fit()
print(delta_model.segments)
This last line gives you a list of segments where the two models differ.
[under construction]
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
File details
Details for the file deltaxplainer-1.1.2.tar.gz
.
File metadata
- Download URL: deltaxplainer-1.1.2.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd6dcf4df999174496c02de57388f19e66049e96b617f2f8749df60f1abfed7c |
|
MD5 | a7bd0a935419c4ed7e127cb4a6b74441 |
|
BLAKE2b-256 | 88aef071a7dca453235b2931f0eb0251dfe7569e4bf1cbe2090f71213c4addab |