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

https://github.com/balaka-18/ensembles-1-

Notebooks on ensemble techniques.
https://github.com/balaka-18/ensembles-1-

bagging-ensemble classification random-forest random-forest-classifier

Last synced: 11 months ago
JSON representation

Notebooks on ensemble techniques.

Awesome Lists containing this project

README

          

# Ensemble Techniques
Notebooks on different ensemble techniques and the algorithm behind them, both Bagging and Boosting.

BAGGING (Bootstrap AGGregation)

Notebook 1 : RandomForestClassifier() class from scratch.
___________________________________________________________________________________________________________________________________________________________________________________

BOOSTING

*Algorithm 1 : AdaBoost (Adaptive boosting)*

Notebook 1 : AdaboostClassifier() class from scratch. Shows valid working example on a chosen query point.

Notebook 2 : Comparison between the performance of scikit-learn's AdaboostClassifier() and the Adaboost classifier created from scratch(in [Notebook 1](https://github.com/BALaka-18/Ensembles-1-/blob/master/Adaboost_from_Scratch.ipynb)), by plotting their decision boundaries on the [play_tennis.csv](https://www.kaggle.com/fredericobreno/play-tennis) dataset.

Screenshot :

![Screenshot (247)](https://user-images.githubusercontent.com/49288068/88477990-433c6e80-cf62-11ea-8e2c-c759fb987f7e.png)
___________________________________________________________________________________________________________________________________________________________________________________