forestfire-core 0.2.0

Core tree-learning algorithms for the ForestFire project.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Tree learners used across the project.
//!
//! `classifier` and `regressor` are the first-order learners used directly by
//! decision trees and random forests. `second_order` is the gradient/hessian-
//! driven learner used by gradient boosting.

pub mod classifier;
pub mod regressor;
pub mod second_order;
pub(crate) mod shared;