Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ linfa-datasets = { path = "datasets", features = [
"diabetes",
"generate",
] }
linfa-linear = { path = "algorithms/linfa-linear" }
linfa-svm = { path = "algorithms/linfa-svm" }
statrs = "0.18"

[target.'cfg(not(windows))'.dependencies]
Expand Down
5 changes: 4 additions & 1 deletion src/composing/mod.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
//! Composition models
//!
//! This module contains three composition models:
//! This module contains four composition models:
//! * `MultiClassModel`: combine multiple binary decision models to a single multi-class model
//! * `MultiTargetModel`: combine multiple univariate models to a single multi-target model
//! * `Platt`: calibrate a classifier (i.e. SVC) to predicted posterior probabilities
//! * `ResidualChain`: fit models sequentially on the residuals of the previous one
//! (forward stagewise additive modeling / L2Boosting); see [`residual_chain::Stagewise`]
mod multi_class_model;
mod multi_target_model;
pub mod platt_scaling;
pub mod residual_chain;

pub use multi_class_model::MultiClassModel;
pub use multi_target_model::MultiTargetModel;
Expand Down
Loading
Loading