forestfire_core/tree/mod.rs
1//! Tree learners used across the project.
2//!
3//! `classifier` and `regressor` are the first-order learners used directly by
4//! decision trees and random forests. `second_order` is the gradient/hessian-
5//! driven learner used by gradient boosting.
6
7pub mod classifier;
8pub mod regressor;
9pub mod second_order;
10pub(crate) mod shared;