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
//! Drift Detection Logic
//!
//! This module provides functions to calculate data drift and concept drift
//! using the tree structure of a trained `PerpetualBooster` model.

pub mod calculation;
pub mod stats;

pub use calculation::{calculate_drift, calculate_drift_columnar};
pub use stats::chi2_contingency_2x2;