treeboost 0.1.0

High-performance Gradient Boosted Decision Tree engine for large-scale tabular data
Documentation
1
2
3
4
5
6
7
8
9
//! Inference module
//!
//! Provides prediction with Split Conformal Prediction intervals

mod conformal;
mod predict;

pub use conformal::ConformalPredictor;
pub use predict::Prediction;