How can I get predictorImportance in crossvalidated ensemble ?
5 ビュー (過去 30 日間)
古いコメントを表示
How can i get predictorImportance from a cross validated fitcensemble ?
Mdl.predictorImportance only works for non cross validated ensembles
Thanks
0 件のコメント
回答 (1 件)
Anmol Dhiman
2020 年 1 月 29 日
The error received is indicative of the issue. For trees of the class ClassificationPartitionedEnsemble, you cannot use prediction, so this kind of tree does not have a predict method and hence, cannot be used with 'predictorImportance'.
fitcensemble returns ClassificationPartitionEnsemble object as shown below.
Use kfoldPredict, kfoldLoss, kfoldMargin, kfoldEdge, and kfoldfun in order to use estimate the quality of the classification using fitcensemble.
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!