© 2026 AI 2030 | All Rights Reserved
blent-ai
Organization
Python Accumulated Local Effects package
Stars
Forks
Watchers
Issues
Python Accumulated Local Effects package.
Explaining model predictions is very common when you have to deploy a Machine Learning algorithm on a large scale. There are many methods that help us understand our model; one these uses Partial Dependency Plots (PDP), which have been widely used for years.
However, they suffer from a stringent assumption: features have to be uncorrelated. In real world scenarios, features are often correlated, whether because some are directly computed from others, or because observed phenomena produce correlated distributions.
Accumulated Local Effects (or ALE) plots first proposed by Apley and Zhu (2016) alleviate this issue reasonably by using actual conditional marginal distributions instead of considering each marginal distribution of features. This is more reliable when handling (even strongly) correlated variables.
This package aims to provide useful and quick access to ALE plots, so that you can easily explain your model through predictions.
For further details about model interpretability and ALE plots, see eg. Molnar (2020).
ALEPython is supported on Python >= 3.5.
You can either install package via pip:
pip install alepython
directly from source (including requirements):
pip install git+https://github.com/MaximeJumelle/ALEPython.git@dev#egg=alepython
or after cloning (or forking) for development purposes, including test dependencies:
git clone https://github.com/MaximeJumelle/ALEPython.git
pip install -e "ALEPython[test]"
from alepython import ale_plot
# Plots ALE of feature 'cont' with Monte-Carlo replicas (default : 50).
ale_plot(model, X_train, 'cont', monte_carlo=True)


If you are interested in the project, I would be happy to collaborate with you since there are still quite a lot of improvements needed.
Apley, Daniel W., and Jingyu Zhu. 2016. Visualizing the Effects of Predictor Variables in Black Box Supervised Learning Models. https://arxiv.org/abs/1612.08468.
Molnar, Christoph. 2020. Interpretable Machine Learning. https://christophm.github.io/interpretable-ml-book/.
Responsible AI Focus
Target Industry
Key Features
Created
February 9, 2019
Last Updated
February 3, 2026