In learning algorithms and statistical classification, a random forest is a classifier that consists in many decision trees. It outputs the class that is the mode of the classes output by individual trees, in other words, the class with the highest frequency.

learn more… | top users | synonyms

3
votes
3answers
2k views

Suggestions for speeding up Random Forests

I'm doing some work with the randomForest package and while it works well, it can be time-consuming. Any one have any suggestions for speeding things up? I'm using a Windows 7 box w/ a dual core AMD ...
5
votes
3answers
2k views

Random Forest with classes that are very unbalanced

I am using random forests in a big data problem, which has a very unbalanced response class, so I read the documentation and I found the following parameters: strata sampsize The documentation ...
0
votes
2answers
505 views

R randomForest for classification

I am trying to do classification with randomForest, but I am repeatedly getting an error message for which there seems to be no apparent solution (randomForest has worked well for me doing regression ...
1
vote
1answer
105 views

R special data frame

I'm asking a question follwing the one I asked yesterday in this post : Random Forests for Variables selection. I managed to find out for each quarter the most significant technical trading rules. ...
1
vote
1answer
141 views

R Rolling Random Forest for Variables Selection [closed]

I've got a daily OHLC dataset of the Euro Stoxx 50 index since 2008 which looks like that : Open High Low Close Volume Adjusted 2008-01-02 4393.53 4411.59 4330.73 4339.23 ...
0
votes
1answer
101 views

Errors with createGrid for rf (randomForest) when using caret

When I try to crate a grid of parameters for training with caret I get various errors: > my_grid <- createGrid("rf") Error in if (p <= len) { : argument is of length zero > my_grid <- ...
0
votes
1answer
105 views

How to estimate amount of memory needed for binary classifier?

Say I wanna create a binary classifier for detecting SPAM messages. I have a billion of training examples and about 20 features. I want my trained classifier to fit in memory (I will run it on cloud ...