1 2 3 4 5 6 7 8 9 10 11
//! GBDT booster module //! //! Provides the main training interface: //! - `GBDTConfig`: Training configuration //! - `GBDTModel`: Trained ensemble model mod config; mod gbdt; pub use config::{GBDTConfig, GbdtPreset, LossType}; pub use gbdt::GBDTModel;