How many levels of the tree should I prune in my decision tree?
조회 수: 3 (최근 30일)
이전 댓글 표시
How many levels of the tree should I prune in my decision tree? How can I detect how many levels is appropriate to have?
댓글 수: 0
답변 (1개)
MHN
2016년 2월 20일
편집: MHN
2016년 2월 20일
There is no certain number for that. One way is computing resubstitution error for different pruning level and find the place which adding nodes does not significantly increase your accuracy.
load ionosphere
tree = fitctree(X,Y);
er = zeros(max(tree.PruneList),1);
for i = 1:max(tree.PruneList)
ptree = prune(tree,'level',i);
er(i,1) = resubLoss(ptree);
end
plot(max(tree.PruneList):-1:1,er)
for example in the above example, level four is a good choice. There are many methods to find the good pruning (before making the tree or after that), which depends on many factors.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Electromechanical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!