0
votes
0answers
19 views

Random Forest: mismatch between %IncMSE and %NodePurity

I have performed a random forest analysis of 100,000 classification trees on a rather small dataset (i.e. 28 obs. of 11 variables). I then made a plot of the variable importance In the resulting ...
3
votes
0answers
37 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 ...
2
votes
2answers
84 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
39 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 ...
0
votes
1answer
43 views

How to obtain all ensemble estimates in RandomForestRegressor (scikit-learn)

I'm trying to fit a random forest regression and I'd like to obtain a distribution of my estimate by looking at the output of every regression tree in the ensemble, returned to me in some sort of ...
2
votes
1answer
122 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
0answers
150 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 ...
1
vote
2answers
117 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
124 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 ...
1
vote
1answer
99 views

Up-sampling in R - randomForest

I have a highly imbalanced data and want to up-sample the minority class to improve accuracy (the minority class is the object of interest). I tried using the "sampsize" option in the "randomForest" ...
1
vote
2answers
160 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 ...
0
votes
1answer
353 views

Image Classification using Random Forests in OpenCV

can canyone guide me on how I train a random forests classifier on Camera input video in OpenCV? What I wish to do is: Get frame from VideoCapture object Locate object in frame Draw a bounding box ...
1
vote
0answers
118 views

report random forest results

This is a question with respective to the output of Random Forest in R. I understand what the gini, impurity, and mean accuracy plots represent. I have a large number of different response ...
1
vote
3answers
451 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 ...
3
votes
2answers
309 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, ...
0
votes
2answers
59 views

Make use of available data and neglect missing data for building classifier

I am using randomForest package in R platform to build a binary classifier. There are about 30,000 rows with 14,000 being in positive class and 16,000 in negative class. I have 15 variables that have ...
1
vote
2answers
434 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 ...
0
votes
0answers
68 views

speed up random forest on very large datasets [duplicate]

Possible Duplicate: Suggestions for speeding up Random Forests I want to build random forest on my data 129600 X 900. Moreover, I want to have not less than 1000 trees for regression. I ...
1
vote
1answer
272 views

Recursive feature elimination in 'caret' for 'randomForest': set different ntree parameter for the first forest

I am currently trying to optimize the random forest classifier for a very high-dimensional dataset (p > 200k) using recursive feature elimination (RFE). caret package has a nice implementation for ...
3
votes
2answers
300 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 ...
0
votes
1answer
182 views

Learning probability distribution with scikit learn random forests?

I have a dataset of state->action pairs, (s,a), where each s defines a probability distribution over the possible choices of a, and each a is sampled from that probability distribution. I'd like to ...
1
vote
2answers
155 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 ...
0
votes
1answer
641 views

scikit-learn RandomForestClassifier produces 'unexpected' results

I'm trying to use sk-learn's RandomForestClassifier for a binary classification task (positive and negative examples). My training data contains 1.177.245 examples with 40 features, in SVM-light ...
0
votes
0answers
361 views

Which Java library has the best Random Forest implementation? [closed]

I'm looking for a suitable Java library to fiddle with machine learning. Random forest to be specific. Mahout looks promising, but Hadoop dependencies look scary. Encog looks nice, but that's my ...
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. ...
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 ...
0
votes
4answers
995 views

Random Forest: high accuracy by one class and very low accuracy by the other

I am new to random forest classifier. I am using it to classify a dataset that has two classes. - The number of features is 512. - The proportion of the data is 1:4. I.e, 75% of the data is from the ...
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
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?
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 ...
5
votes
3answers
305 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 ...
3
votes
3answers
349 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
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 ...