You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to get the prediction per tree using regression, just as it is
with classification?
This is possible:
[Y_hat, votes, prediction_pre_tree] = classRF_predict(X_tst,model,test_options);
But how can I make this work too?
[Y_hat, prediction_pre_tree] = regRF_predict(X_tst,model,test_options);
This would allow me to estimate the variance.
I know that it is possible in the c++ code, just not in the Matlab interface. I
am not very skilled with c++ and compiling the mex codes; maybe someone has a
compiled Mexfile with this feature?
Many thanks!
Original issue reported on code.google.com by [email protected] on 9 Sep 2014 at 8:14
The text was updated successfully, but these errors were encountered:
yup.
https://code.google.com/p/randomforest-matlab/source/browse/trunk/RF_Reg_C/regRF
_predict.m#12
see this example
https://code.google.com/p/randomforest-matlab/source/browse/trunk/RF_Reg_C/tutor
ial_RegRF.m#240
Original comment by abhirana on 10 Sep 2014 at 1:31
Original issue reported on code.google.com by
[email protected]
on 9 Sep 2014 at 8:14The text was updated successfully, but these errors were encountered: