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.
1
vote
2answers
727 views
How I can extract the RandomForest from R for use in production?
I have a successful randomforest model, and I want to integrate it in another software, I know that I can use some libraries (like fastRF in Java o ALGLIB's DecisionForest for other languages) but ...
3
votes
0answers
234 views
NA in randomForest [closed]
I have a question regarding NA in randomForest (in R). I have a dataset which include both numerical and non-numerical variables, and the data includes some NA. Do anyone have some tips how to deal ...
1
vote
1answer
171 views
Increasing efficiency of Python copying large datasets
I'm having a bit of trouble with an implementation of random forests I'm working on in Python. Bare in mind, I'm well aware that Python is not intended for highly efficient number crunching. The ...
1
vote
1answer
731 views
Random forests with scikit learn .9 or below
I am having some weird problems installing Scikit learn on my mac and my linux box. Only scikit learn .9 installs.
is there any way to learn random forests using this version?
5
votes
1answer
1k views
RandomForest for Regression in R
I'm experimenting with R and the randomForest Package, I have some experience with SVM and Neural Nets.
My first test is to try and regress: sin(x)+gaussian noise.
With Neural Nets and svm I obtain a ...
0
votes
1answer
106 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 ...
2
votes
3answers
1k views
Do I need to normalize (or scale) data for randomForest (R package)?
I am doing regression task - do I need to normalize (or scale) data for randomForest (R package)? And is it neccessary to scale also target values?
And if - I want to use scale function from caret ...
7
votes
3answers
933 views
Parallel Random Forests with doSMP and foreach drastically increase memory usage (on Windows)
When executing random forest in serial it uses 8GB of RAM on my system, when doing it in parallel it uses more than twice te RAM (18GB). How can I keep it to 8GB when doing it in parallel? Here's the ...
3
votes
2answers
451 views
R sampling to get around randomForest 32 factor limit [closed]
I'm trying to work around the randomForest package limit of 32 levels for factors.
I have a data set with 100 levels in one of the factor variables.
I wrote the following code to see what things ...
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 ...
5
votes
3answers
304 views
R machine learning packages to deal with factors with a large number of levels
I'm trying to do some machine learning stuff that involves a lot of factor-type variables (words, descriptions, times, basically non-numeric stuff). I usually rely on randomForest but it doesn't work ...
1
vote
1answer
340 views
R RandomForest: Proximity for new object
I trained a random forest:
model <- randomForest(x, y, proximity=TRUE)
When I want to predict y for new objects, I use
y_pred <- predict(model, xnew)
How can I calculate the proximity ...
1
vote
1answer
280 views
R packages/models that can handle NA's
I'm looking for R packages or machine learning models/algos like randomForest, glmnet, gbdt, etc that can handle NA's, as opposed to ignoring the row or column that has any instances of NA's. I'm not ...
3
votes
3answers
348 views
R randomForest voting tie break
Does anyone know what the mechanism is that the R randomForest package uses to resolve classification ties - i.e. when the trees end up with equal votes in two or more classes?
The documentation ...
1
vote
1answer
486 views
R rfcv can't split data
I'm trying to use the rfcv function in the randomForest package. I'm getting an error message as follows:
> rfcv1 <- rfcv(x[1:18750,], testClass[1:18750], cv.fold=2)
Error in ...
7
votes
1answer
5k views
How to use random forests in R with missing values? [closed]
library(randomForest)
rf.model <- randomForest(WIN ~ ., data = learn)
I would like to fit a random forest model, but I get this error:
Error in na.fail.default(list(WIN = c(2L, 1L, 1L, 2L, 1L, ...
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 ...
2
votes
3answers
711 views
R put multiple randomForest objects into a vector
I am curious if R has the ability to place objects into vectors/lists/arrays/etc. I am using the randomforest package to work on subsets of a larger piece of data and would like to store each version ...
4
votes
1answer
2k views
OpenCV - Random Forest Example
Do anyone have some example using Random Forests with the 2.3.1 API Mat and not the cvMat?
Basicly i have a Matrix Mat data that consist of 1000 rows with 16x16x3 elements and a Matrix Mat responses ...
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 ...
4
votes
1answer
1k views
How to use R Random forests to reduce attributes having no discrete classes?
I want to use Random forests for attribute reduction. One problem I have in my data is that I don't have discrete class - only continuous, which indicates how example differs from 'normal'. This class ...
15
votes
3answers
7k views
R Random Forests Variable Importance
I am trying to use the random forests package for classification in R.
The Variable Importance Measures listed are:
mean raw importance score of variable x for class 0
mean raw importance score of ...