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
//! Decision Tree
//!
//! Basic structures and logic for decision trees, including prediction and tree management.
pub mod core;
pub mod predict;

pub use core::Tree;
pub use core::TreeStopper;