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
hello, is it possible to return the score for each predicted label from random
forest? I need this to plot the ROC curve. It is urgent if you can. Thanks.
Original issue reported on code.google.com by [email protected] on 3 Jun 2014 at 3:09
The text was updated successfully, but these errors were encountered:
you can get a prediction per tree (look at the output of classRF_predict). From
those votes, you can get say how many trees in a RF are for a particular class
compared to some other class(es). This can be used as a
score/confidence/probability of the ensemble for an example being a member of a
particular class vs some other class.
Original comment by abhirana on 3 Jun 2014 at 4:26
Original issue reported on code.google.com by
[email protected]
on 3 Jun 2014 at 3:09The text was updated successfully, but these errors were encountered: