- If you specify a positive integer, then, at every learning cycle, the software trains one weak learner for every template object in Learners. Consequently, the software trains NumLearningCycles*numel(Learners) learners.
- If you specify 'AllPredictorCombinations', then set Method to 'Subspace' and specify one learner only for Learners. With these settings, the software trains learners for all possible combinations of predictors taken NPredToSample at a time. Consequently, the software trains nchoosek(size(X,2),NPredToSample) learners.
What is a learning cycle mentioned in the 'fitcensemble' documentation
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
What does the term 'learning cycle' refer to. It is mentioned in the 'fitcensemble' documentation.
0 commentaires
Réponses (1)
Drew
le 3 Nov 2023
See the "NumLearningCycles" section on the page https://www.mathworks.com/help/stats/fitcensemble.html.
The info from there:
NumLearningCycles — Number of ensemble learning cycles
100 (default) | positive integer | 'AllPredictorCombinations'
Number of ensemble learning cycles, specified as the comma-separated pair consisting of 'NumLearningCycles' and a positive integer or 'AllPredictorCombinations'.
The software composes the ensemble using all trained learners and stores them in Mdl.Trained.
Example: 'NumLearningCycles',500
Data Types: single | double | char | string
0 commentaires
Voir également
Catégories
En savoir plus sur Classification Ensembles dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!