perpetual 2.1.0

A self-generalizing gradient boosting machine that doesn't need hyperparameter optimization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Causal
//!
//! This module implements causal inference methods, such as Instrumental Variables (IV),
//! Double Machine Learning (DML), uplift modelling (R-Learner), policy learning,
//! and fairness-aware objectives, allowing for the estimation of causal effects.
pub mod dml;
pub mod fairness;
pub mod iv;
pub mod metalearners;
pub mod objective;
pub mod policy;
pub mod uplift;

mod tests;