Expand description
Composition models
This module contains three composition models:
MultiClassModel: combine multiple binary decision models to a single multi-class modelMultiTargetModel: combine multiple univariate models to a single multi-target modelPlatt: calibrate a classifier (i.e. SVC) to predicted posterior probabilities
Re-exports§
pub use platt_scaling::Platt;pub use platt_scaling::PlattError;pub use platt_scaling::PlattParams;
Modules§
- platt_
scaling - Implement Platt calibration with Newton method
Structs§
- Multi
Class Model - Merge models with binary to multi-class classification
- Multi
Target Model - Merge models with single target to multi-target models