An open API service indexing awesome lists of open source software.

https://github.com/rmodi6/adaboost

Adaptive Boosting of Weak Learners implemented in Python
https://github.com/rmodi6/adaboost

adaboost adaptive-boosting-algorithm cross-validation empirical-risk-minimization machine-learning python38

Last synced: 12 months ago
JSON representation

Adaptive Boosting of Weak Learners implemented in Python

Awesome Lists containing this project

README

          

# Adaptive Boosting
The path to dataset can be provided using the `dataset` parameter and `mode` parameter can be used to specify the mode in which to execute adaboost. There are two modes available: `erm` for Empirical Risk Minimization and `cv` for 10 fold Cross Validation. For example:
```bash
python adaboost.py --dataset 'path/to/dataset' --mode erm
```