About Causal ML¶
Causal ML
is a Python package that provides a suite of uplift modeling and causal inference methods using machine learning algorithms based on recent research.
It provides a standard interface that allows user to estimate the Conditional Average Treatment Effect (CATE) or Individual Treatment Effect (ITE) from experimental or observational data.
Essentially, it estimates the causal impact of intervention T on outcome Y for users with observed features X, without strong assumptions on the model form.
Typical use cases include:
Campaign Targeting Optimization: An important lever to increase ROI in an advertising campaign is to target the ad to the set of customers who will have a favorable response in a given KPI such as engagement or sales. CATE identifies these customers by estimating the effect of the KPI from ad exposure at the individual level from A/B experiment or historical observational data.
Personalized Engagement: Company has multiple options to interact with its customers such as different product choices in up-sell or messaging channels for communications. One can use CATE to estimate the heterogeneous treatment effect for each customer and treatment option combination for an optimal personalized recommendation system.
The package currently supports the following methods:
- Tree-based algorithms
Uplift Random Forests on KL divergence, Euclidean Distance, and Chi-Square
Uplift Random Forests on Contextual Treatment Selection
Uplift Random Forests on delta-delta-p (\(\Delta\Delta P\)) criterion (only for binary trees and two-class problems)
Uplift Random Forests on IDDP (only for binary trees and two-class problems)
Interaction Tree (only for binary trees and two-class problems)
Causal Inference Tree (only for binary trees and two-class problems)
- Meta-learner algorithms
- Instrumental variables algorithms
- Neural network based algorithms
CEVAE
DragonNet
- Treatment optimization algorithms