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.
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 ...
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, ...
7
votes
3answers
919 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 ...
5
votes
3answers
302 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 ...
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
1answer
734 views
RandomForest in R linear regression tails mtry
I am using the randomForest package in R (R version 2.13.1, randomForest version 4.6-2) for regression and noticed a significant bias in my results: the prediction error is dependent on the value of ...
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 ...
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 ...
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
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 ...
3
votes
2answers
299 views
Trouble understanding output from scikit random forest
Say I have a dataset like this:
5.9;0.645;0.12;2;0.075;32;44;0.99547;3.57;0.71;10.2;5
6;0.31;0.47;3.6;0.067;18;42;0.99549;3.39;0.66;11;6
where the 1st 11 columns indicate features (acidity, ...
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 ...
3
votes
2answers
184 views
Increasing the size of the sample data - R
One of my colleagues indicated that randomForest() does not perform well with very large data sets. Now, I am just trying to figure out if that really is the case, but since the data set cannot be ...
3
votes
2answers
446 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 ...
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 ...
3
votes
2answers
296 views
OpenCV Iterative random forest training
I'm using the random forest algorithm as the classifier of my thesis project.
The training set consists of thousands of images, and for each image about 2000
pixels get sampled. For each pixel, I've ...
3
votes
0answers
30 views
Which Regression methods are suitable for binary valued features and continuous output?
I want to build a machine learning model to regression on continuous output given binary valued features(0,1). the dimension of my problem is around 200.
which of the flowing methods seems suitable ...
3
votes
1answer
132 views
Incorporating feature error into the Random Forest algorithm
I am using Random Forest to classify a large number of astronomical objects and it's doing a relatively good job. However, I want to improve the performance further by incorporating information about ...
3
votes
0answers
232 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 ...
2
votes
3answers
698 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 ...
2
votes
1answer
675 views
R randomForest's rfcv method
I would like to use rfcv to cull the unimportant variables from a data set before creating a final random forest with more trees (please correct and inform me if that's not the way to use this ...
2
votes
1answer
741 views
in R Plot importance variables of Random Forest model
What am I doing wrong here? What does "subscript out of bound" mean?
I got the below code (first block) excerpt form a Revolution R online seminar regarding datamining in R. I'm trying to incorporate ...
2
votes
1answer
115 views
R tree-based methods like randomForest, adaboost: interpret result of same data with different format
Suppose my dataset is a 100 x 3 matrix filled with categorical variables. I would like to do binary classification on the response variable. Let's make up a dataset with following code:
...
2
votes
1answer
531 views
Random Forest output interpretation
I have run random Forest for my data and got the output in form of matrix.
I want to understand what are the rules it applied to classify.
P.S. I want profile of the customer as output
e.g. Person in ...
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 ...
2
votes
2answers
66 views
Random Forest interpretation in scikit-learn
I am using sklearn.ensemble.RandomForestRegressor to fit a random forest regressor on a dataset. Now, that I have the results, is it possible to interpret this in some format where I can then ...
2
votes
1answer
31 views
multivariate random forest with opencv
Let's say we are trying to classify a pencil as healthy or not and we have two variables for this purpose: length and weight of the pencil. Now, what should I give to the training method of random ...
2
votes
1answer
112 views
Parallel processing in R
I'm working with a custom random forest function that requires both a starting and ending point in a set of genomic data (about 56k columns).
I'd like to split the column numbers into subgroups and ...
2
votes
1answer
274 views
Parallelize rfcv() function for feature selection in randomForest package
I wonder if anyone knows how to parallelize rfcv() function implemented in R-package 'randomForest'. Sorry if the question sounds very basic, but I tried to do this using 'foreach' without any ...
2
votes
2answers
269 views
Random Forest on large xdf files without reading into a dataframe
Is there a way to run random forest on large (about 10gb) xdf (revolution R format) files? Obviously I can try rxReadXdf and covert it to a dataframe...but my machine only has 8gb ram and I may be ...
2
votes
0answers
134 views
Comparison of Random Decision Forest implementation in C++ [closed]
I am currently converting some R code into C++ code, and I need a “good” C++ Random Decision Forest implementation.
So far I found three big implementation (tmva, alglib and openCv), some ...
2
votes
1answer
155 views
How do I make a randomForest model size smaller?
I've been training randomForest models in R on 7 million rows of data (41 features). Here's an example call:
myModel <- randomForest(RESPONSE~., data=mydata, ntree=50, maxnodes=30)
I thought ...
1
vote
3answers
117 views
How are feature_importances in RandomForestClassifier determined?
I have a classification task with a time-series as the data input, where each attribute (n=23) represents a specific point in time. Besides the absolute classification result I would like to find out, ...
1
vote
2answers
156 views
Number of target values in the one prediction
I use python's scikit-learn module for predicting some values in the CSV file. I am using Random Forest Regressor to do it. As example, i have 8 train values and 3 values to predict - which of codes i ...
1
vote
1answer
1k views
Random Forest optimization with tuning and cross-validation
I'm working with a large data set, so hope to remove extraneous variables and tune for an optimal m variables per branch. In R, there are two methods, rfcv and tuneRF, that help with these two tasks. ...
1
vote
2answers
105 views
is it neccessary to run random forest with cross validation at the same time
Random forest is a robust algorithm. In Random Forest, it trains several small trees and have OOB accuracy. However, is it necessary to run cross-validation with random forest at the same time ?
1
vote
1answer
330 views
Random forest classifier probability only has values 0, 0.1, 0.2… 1
I'm trying to use a random forest to classify my data, but when I generate the classifier probability, it always has a value like 0, 0.1, 0.2, ... 1 within 5 digits. Is this a statistics problem or a ...
1
vote
2answers
153 views
C++: how to reuse my template code
I am writing a few algorithms to build random forests, each forest will be
trained on separate data with separate functions (each tree will use a set of
functions with a fixed signature however ...
1
vote
2answers
717 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 ...
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
416 views
randomForest's importance only contains MeanDecreaseGini
I have two scripts which both generate random forests in R, which as far as I can work out have the same inputs, although my problem suggests this isn't the case. One of them returns an importance ...
1
vote
2answers
2k views
Random forest on a big dataset
I have a large dataset in R (1M+ rows by 6 columns) that I want to use to train a random forest (using the randomForest package) for regression purposes. Unfortunately, I get a Error in matrix(0, n, ...
1
vote
3answers
435 views
Python Scikit Random Forest Regressor Error
I am trying to load training and test data from a csv, run the random forest regressor in scikit/sklearn, and then predict the output from the test file.
The TrainLoanData.csv file contains 5 ...
1
vote
2answers
404 views
setting values for ntree and mtry for random forest regression model
I'm using R package of random forest to do regression on some biological data and my training data size is 38772 X 201 and I just wonder what would be a good values for the number of trees "ntree" and ...
1
vote
1answer
236 views
Generating synthetic data for unsupervised learning
I want to prepare data for unsupervised learning with random forest.
The procedure is as follows:
Take data and add attribute 'class' with value 1 to all examples
Generate synthetic data from ...
1
vote
1answer
795 views
What does the parameter 'classwt' in RandomForest function in RandomForest package in R stand for?
From help :
"classwt - Priors of the classes. Need not add up to one. Ignored for regression."
could setting classwt parameter help when you have heavy unbalanced data - priors of classes differs ...
1
vote
1answer
278 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 ...
1
vote
1answer
33 views
random forest error NA not permitted in predictors
Hi I am using the following r script to build a random forest:
# load the necessary libraries
library(randomForest)
testPP<-numeric()
# load the dataset
QdataTrain <- ...
1
vote
1answer
68 views
Sklearn: How to Feed Data to sklearn RandomForestClassifier
I have this data:
print training_data
print labels
# prints
[[1, 0, 1, 1], [1, 1, 1, 1], [1, 0, 1, 1], [1, 1, 1, 0], [1, 1, 0, 1], [1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 0,0], [1, 1, 1, ...
1
vote
1answer
121 views
Building the dataset for Random Forest training procedure
I should use the bagging (abbreviation for bootstrap aggregating) technique in order to train a random forest classifier. I read here the description of this learning technique, but I have not figured ...
