miniboosts 0.3.6

MiniBoosts: A collection of boosting algorithms written in Rust πŸ¦€
Documentation
# `miniboosts/src/booster` directory

This directory defines boosting algorithms.
The boosting algorithms defined in this directory are listed below:


### Boosting algorithms
* [AdaBoost]https://www.sciencedirect.com/science/article/pii/S002200009791504X?via%3Dihub by Freund and Schapire, 1997.  
    AdaBoost is defined in `adaboost.rs`.
* [LPBoost]https://link.springer.com/content/pdf/10.1023/A:1012470815092.pdf by Demiriz, Bennett, and Shawe-Taylor, 2002.  
    LPBoost is defined in `lpboost/`.
* [SmoothBoost]https://link.springer.com/chapter/10.1007/3-540-44581-1_31 by Rocco A. Servedio, 2003.  
    SmoothBoost is defined in `smoothboost` directory.
* [AdaBoostV]http://jmlr.org/papers/v6/ratsch05a.html by RΓ€tsch and Warmuth, 2005.  
    AdaBoostV is defined in `adaboostv.rs`.
* [TotalBoost]https://dl.acm.org/doi/10.1145/1143844.1143970 by Warmuth, Liao, and RΓ€tsch, 2006.  
    TotalBoost is defined in `totalboost.rs`.
* [SoftBoost]https://proceedings.neurips.cc/paper/2007/file/cfbce4c1d7c425baf21d6b6f2babe6be-Paper.pdf by Warmuth, Glocer, and RΓ€tsch, 2007.  
    SoftBoost is defined in `softboost.rs`.
* [ERLPBoost]https://www.stat.purdue.edu/~vishy/papers/WarGloVis08.pdf by Warmuth and Glocer, and Vishwanathan, 2008.  
    ERLPBoost is defined in `erlpboost/` directory.
* [CERLPBoost]https://link.springer.com/article/10.1007/s10994-010-5173-z (The Corrective ERLPBoost) by Shalev-Shwartz and Singer, 2010.  
    CERLPBoost is defined in `cerlpboost/` directory.
* [MLPBoost]https://arxiv.org/abs/2209.10831 by Mitsuboshi, Hatano, and Takimoto, 2022.  
    MLPBoost is defined in `mlpboost/` directory.


### `Booster` trait
`core.rs` defines `Booster` trait and `State` struct.
If you want to implement your own boosting algorithm,
you must implement `Booster` trait.

See the doc string for further information.


### Directory structure

```txt
./
β”œβ”€ core.rs                    Defines Booster trait
β”‚
β”œβ”€ adaboost
β”‚  β”” adaboost_algorithm.rs    Defines AdaBoost
β”œβ”€ adaboostv
β”‚  β”” adaboostv_algorithm.rs   Defines AdaBoost*
β”œβ”€ cerlpboost
β”‚  β”” cerlpboost_algorithm.rs  Defines Corrective ERLPBoost
β”œβ”€ erlpboost
β”‚  β”œ qp_model.rs              Implements the sub-problem (QP) for ERLPBoost
β”‚  β”” erlpboost_algorithm.rs   Defines ERLPBoost
β”œβ”€ gradient_boost
β”‚  β”” gbm.rs                   Defines Gradient Boosting Machine
β”œβ”€ lpboost
β”‚  β”œ lp_model.rs              Implements the sub-problem (LP) for LPBoost
β”‚  β”” lpboost_algorithm.rs     Defines LPBoost
β”œβ”€ mlpboost
β”‚  β”œ lp_model.rs              Implements the sub-problem (LP) for MLPBoost
β”‚  β”” mlpboost_algorithm.rs    Defines MLPBoost
β”œβ”€ smoothboost
β”‚  β”” smoothboost_algorithm.rs Defines SmoothBoost
β”œβ”€ softboost
β”‚  β”” softboost_algorithm.rs   Defines SoftBoost
└─ totalboost
   β”” totalboost_algorithm.rs  Defines TotalBoost
```