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
10
11
12
13
14
//! Python bindings for inference module
//!
//! Provides access to:
//! - Prediction: Point predictions with optional intervals
//! - ConformalPredictor: Distribution-free prediction intervals

mod predict;

use pyo3::prelude::*;

/// Register all inference classes with the module
pub fn register(m: &Bound<'_, PyModule>) -> PyResult<()> {
    predict::register(m)
}