How to get the classification rules of an ensemble?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi.
I'm using fitensemble to train an AdaBoostM2 classifier. My question is - how can I see what each weak classifier actually does?
Vadim.
0 件のコメント
採用された回答
Shashank Prasanna
2013 年 7 月 18 日
Here is an example:
load fisheriris
ens = fitensemble(meas,species,'AdaBoostM2',100,'Tree');
You can find all the trained classification tree models here:
ens.Trained
Access them individually as follows:
ens.Trained{1}
Take a look at their properties and methods for more information.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Classification Ensembles についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!