Classifier Ensemble
An ensemble is a combination of multiple base estimators. For a short introduction to ensemble methods, see Sklearn Ensemble Methods. In PHOTONAI, an estimator ensemble can be easily created by adding any number of estimators to a Stack. Afterwards, simply add a meta estimator that receives the predictions of your stack. This can be any estimator or simply a averaging or voting strategy. In this example, we used the PhotonVotingClassifier to create a final prediction.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
|