perpetual 2.0.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
//! Booster
//!
//! This module contains the core GBM implementation, including configuration,
//! multi-output support, and prediction logic.
// public modules
pub mod config;
pub mod core;
pub mod multi_output;
pub mod predict;

// private modules
mod setters;