Tagged Questions
0
votes
1answer
170 views
MATLAB fitensemble : How it build each tree ? Based on all features OR subset of features?
I am using fitensemble function with 'Bag' in matlab 2011b for classification using following:
fitensemble(features , classLabels,'Bag',10,'tree','type' , 'classification');
Can someone inform how ...
0
votes
0answers
219 views
Matlab TreeBagger Cost argument not working as it works with similar function fitensemble
The cost matrix of my TreeBagger class and fitensemble (Bag method) are both [0 8;1 0] for binary classification. The confusion matrix on fitensemble shows that the classfication tends to turn in the ...
3
votes
4answers
2k views
random forest code review
I'm doing a research project on random forest algorithm. I have found numerous implementations of the algorithm but the main part of the code is often written in Fortran while I'm completely naive in ...